.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small padding as body handles header offset */
  padding-bottom: 40px;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-promotions__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 90%;
  color: #F2FFF6;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 30px;
  max-width: 800px;
  color: #F2FFF6;
}

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

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

.page-promotions__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #22C768; /* Auxiliary Color */
  margin-bottom: 40px;
  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: #11A84E; /* Primary Color */
  border-radius: 2px;
}

.page-promotions__text-block {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.page-promotions__feature-title, .page-promotions__category-title, .page-promotions__card-heading, .page-promotions__step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-promotions__feature-text, .page-promotions__card-text, .page-promotions__step-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions__dark-bg {
  background-color: #0A4B2C; /* Deep Green for contrast sections */
  color: #F2FFF6;
}

.page-promotions__promotion-category {
  margin-bottom: 60px;
}

.page-promotions__category-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 30px;
  text-align: center;
}

.page-promotions__promotion-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 40px;
}

.page-promotions__card-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-promotions__card-content {
  flex-grow: 1;
}

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

.page-promotions__game-promo-item {
  text-align: center;
  padding: 25px;
}

.page-promotions__game-promo-item .page-promotions__card-text {
  margin-bottom: 20px;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-promotions__small-button {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-promotions__btn-secondary {
  background: none;
  border: 2px solid #2AD16F;
  color: #2AD16F;
}

.page-promotions__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-promotions__step-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__step-item .page-promotions__step-title {
  color: #57E38D; /* Glow */
}

.page-promotions__download-app {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
  padding: 40px;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__terms-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  color: #A7D9B8;
  font-size: 1rem;
  line-height: 1.5;
}

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

.page-promotions__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #1E3A2A; /* Divider for question background */
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-promotions__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-promotions__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  background-color: #11271B;
}

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

.page-promotions__cta-bottom .page-promotions__card {
  padding: 60px 40px;
  margin-top: 60px;
  border-color: #57E38D; /* Glow border for emphasis */
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions__cta-bottom .page-promotions__section-title {
  color: #F2FFF6;
}

.page-promotions__cta-bottom .page-promotions__section-title::after {
  background-color: #F2C14E; /* Gold */
}

.page-promotions__cta-bottom .page-promotions__text-block {
  color: #A7D9B8;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    max-width: 95%;
  }
  .page-promotions__promotion-card {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions__card-image {
    max-width: 80%;
  }
  .page-promotions__download-app {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-content {
    padding: 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-promotions__hero-description {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }
  .page-promotions__section {
    padding: 40px 15px;
  }
  .page-promotions__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
  .page-promotions__text-block {
    font-size: 0.95rem;
  }
  .page-promotions__feature-grid, .page-promotions__game-promo-grid, .page-promotions__steps-list {
    grid-template-columns: 1fr;
  }
  .page-promotions__card {
    padding: 20px;
  }
  .page-promotions__card-image {
    max-width: 100%;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  /* Mobile image, video, button, container overrides */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__promotion-card,
  .page-promotions__game-promo-item,
  .page-promotions__step-item,
  .page-promotions__download-app,
  .page-promotions__terms-list,
  .page-promotions__faq-list,
  .page-promotions__cta-bottom .page-promotions__card {
    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; /* body already handles --header-offset */
  }
  .page-promotions__cta-button,
  .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-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content {
    transform: translate(-50%, -50%); /* Re-center for smaller screens */
    padding: 10px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .page-promotions__hero-description {
    font-size: clamp(0.85rem, 4vw, 1rem);
  }
  .page-promotions__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .page-promotions__promotion-card,
  .page-promotions__download-app {
    padding: 20px;
  }
  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 10px 20px 15px;
  }
}