.page-promotions {
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-promotions__section-title {
  font-size: 36px;
  color: #0A192F;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promotions__text-block {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-promotions__dark-bg {
  background-color: #0A192F;
  color: #ffffff;
  padding: 60px 0;
}

.page-promotions__dark-bg .page-promotions__section-title {
  color: #ffffff;
}

.page-promotions__dark-bg .page-promotions__text-block {
  color: #f0f0f0;
}

.page-promotions__light-bg {
  background-color: #ffffff;
  padding: 60px 0;
}

/* Buttons */
.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__cta-button,
.page-promotions__access-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions__btn-primary,
.page-promotions__cta-button.page-promotions__btn-primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-promotions__btn-primary:hover,
.page-promotions__cta-button.page-promotions__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-secondary,
.page-promotions__cta-button.page-promotions__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions__btn-secondary:hover,
.page-promotions__cta-button.page-promotions__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Cards */
.page-promotions__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-title {
  font-size: 22px;
  color: #0A192F;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__card p {
  color: #555555;
  font-size: 16px;
  line-height: 1.6;
}

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

/* 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: var(--header-offset, 120px); /* Ensure header offset */
  background: linear-gradient(135deg, #0A192F 0%, #333333 100%); /* Fallback gradient */
}

.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%;
}

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__hero-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-promotions__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__cta-button {
  padding: 18px 45px;
  font-size: 20px;
  border-radius: 10px;
}

/* Intro Section */
.page-promotions__intro-section {
  padding: 80px 0;
}

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

/* Quick Access Section */
.page-promotions__quick-access-section {
  padding: 80px 0;
  text-align: center;
}

.page-promotions__access-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.page-promotions__access-button {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
  padding: 12px 25px;
  font-size: 17px;
  border-radius: 6px;
}

.page-promotions__access-button:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Game Promo Section */
.page-promotions__game-promo-section {
  padding: 80px 0;
}

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

.page-promotions__game-card img {
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Promotions Grid Section */
.page-promotions__promotions-grid {
  padding: 80px 0;
}

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

.page-promotions__promo-card img {
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-promotions__promo-card .page-promotions__card-title a {
  color: #0A192F; /* Ensure link color is visible on card */
  text-decoration: none;
}

.page-promotions__promo-card .page-promotions__card-title a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-promotions__promo-card .page-promotions__btn-primary {
  margin-top: 20px;
}

/* Security & Support Section */
.page-promotions__security-support-section {
  padding: 80px 0;
}

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

.page-promotions__info-card img {
  
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promotions__contact-cta {
  margin-top: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 0;
}

.page-promotions__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1a2a43; /* Darker background for items in dark section */
  color: #ffffff;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #0A192F;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions__faq-question:hover {
  background: #14213d;
  border-color: rgba(255, 255, 255, 0.2);
}

.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700;
}

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  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: 32px;
  height: 32px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Rotates to 'X' */
}

.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.3s ease;
  padding: 0 25px;
  opacity: 0;
  background-color: #1a2a43;
  color: #f0f0f0;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-promotions__faq-answer p {
  margin: 0;
  font-size: 16px;
}

/* Blog Section */
.page-promotions__blog-section {
  padding: 80px 0;
}

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

.page-promotions__blog-card img {
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-promotions__blog-card .page-promotions__card-title a {
  color: #0A192F;
  text-decoration: none;
}

.page-promotions__blog-card .page-promotions__card-title a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-promotions__blog-excerpt {
  font-size: 15px;
  color: #666666;
  margin-bottom: 15px;
}

.page-promotions__blog-date {
  font-size: 14px;
  color: #999999;
  display: block;
  margin-top: auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 44px;
  }
  .page-promotions__hero-description {
    font-size: 18px;
  }
  .page-promotions__cta-button {
    font-size: 18px;
    padding: 15px 35px;
  }
  .page-promotions__section-title {
    font-size: 32px;
  }
  .page-promotions__text-block {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .page-promotions__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important;
    margin-bottom: 10px; /* Space between buttons */
  }
  .page-promotions__hero-cta-group {
    flex-direction: column;
    gap: 10px;
  }
  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-promotions__text-block {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-promotions__card {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 20px;
  }
  .page-promotions__faq-question h3 {
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-promotions__faq-answer {
    padding: 0 20px;
  }
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px 20px !important;
  }
  .page-promotions__access-links {
    flex-direction: column;
  }
  .page-promotions__access-button {
    width: 100% !important;
    max-width: 100% !important;
  }
  .page-promotions__contact-cta {
    flex-direction: column;
  }
  .page-promotions__btn-primary, .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Ensure all images and their containers are responsive */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__promo-items,
  .page-promotions__game-cards,
  .page-promotions__info-grid,
  .page-promotions__feature-cards,
  .page-promotions__blog-posts {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 30px;
  }
  .page-promotions__section-title {
    font-size: 24px;
  }
  .page-promotions__hero-cta-group {
    gap: 10px;
  }
  .page-promotions__cta-button {
    padding: 10px 25px;
    font-size: 15px;
  }
  .page-promotions__faq-question h3 {
    font-size: 15px;
  }
  .page-promotions__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
}