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

.page-promotions__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  padding-bottom: 60px; /* Add some space below hero content */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions__hero-image {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  margin-bottom: 20px; /* Space between image and text on mobile */
}

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

.page-promotions__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 20px;
  margin-top: -100px; /* Overlap content slightly on image for visual effect */
  position: relative;
  z-index: 1;
}

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

.page-promotions__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for light button */
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__button--secondary {
  background: #111111;
  color: #FFD36B;
  border: 1px solid #3A2A12;
}

.page-promotions__button--secondary:hover {
  background: #222222;
  border-color: #FFD36B;
  color: #FFD36B;
}

.page-promotions__button--small {
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: 6px;
}

.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);
  color: #FFD36B;
  margin-bottom: 25px;
  font-weight: 700;
}

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

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

.page-promotions__card {
  background-color: #111111;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid #3A2A12;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-promotions__card-title a {
  color: #F2C14E;
  text-decoration: none;
}

.page-promotions__card-title a:hover {
  text-decoration: underline;
}

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

.page-promotions__centered-cta {
  margin-top: 50px;
}

.page-promotions__game-category {
  margin-bottom: 50px;
}

.page-promotions__game-category-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #FFD36B;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-promotions__game-card {
  padding: 25px;
}

.page-promotions__app-download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions__app-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__app-text {
  text-align: center;
  max-width: 600px;
}

.page-promotions__app-text p {
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.page-promotions__app-note {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 15px;
}

.page-promotions__details-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-promotions__detail-item {
  text-align: left;
}

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

.page-promotions__faq-item .page-promotions__card-title {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .page-promotions__hero-content {
    margin-top: -150px; /* More overlap for larger screens */
  }

  .page-promotions__app-download-content {
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }

  .page-promotions__app-text {
    text-align: left;
  }

  .page-promotions__app-image {
    order: 2; /* Image on right */
  }

  .page-promotions__app-text p {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-image img,
  .page-promotions__card-image,
  .page-promotions__app-image {
    max-width: 100%;
    height: auto;
  }
  .page-promotions__hero-content {
    margin-top: 0; /* Remove overlap on small screens */
    padding-top: 10px; /* Small padding for the first section */
  }
}