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

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #111111; /* Card BG color for background */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px; /* Space between image and content */
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.page-promotions__hero-content-area {
  max-width: 800px;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem); /* Constraint on H1 size */
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF6D6;
}

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

.page-promotions__section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #111111;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12;
}

.page-promotions__section-title {
  font-size: 2rem;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-promotions__section-description {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #FFF6D6;
}

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

.page-promotions__card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease-in-out;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__card-title {
  font-size: 1.4rem;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: 600;
}

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

.page-promotions__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for light button */
  border: none;
}

.page-promotions__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
}

.page-promotions__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
}

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

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

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

.page-promotions__step-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

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

.page-promotions__step-title {
  font-size: 1.3rem;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__step-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #FFF6D6;
  margin-bottom: 20px;
}

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

.page-promotions__app-image {
  width: 100%;
  max-width: 500px;
  min-height: 200px; /* Minimum image size */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #3A2A12;
}

.page-promotions__app-text-content {
  text-align: center;
}

.page-promotions__app-subtitle {
  font-size: 1.6rem;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__app-text-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
  margin-bottom: 25px;
}

.page-promotions__responsible-gaming {
  text-align: center;
}

.page-promotions__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-promotions__faq-question {
  font-size: 1.2rem;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__faq-answer {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #FFF6D6;
}

.page-promotions__join-us {
  text-align: center;
  margin-bottom: 60px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-promotions__hero-section {
    flex-direction: column; /* Keep column for hero for image-above-text */
  }

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

  .page-promotions__app-text-content {
    text-align: left;
    max-width: 50%;
  }

  .page-promotions__app-image {
    order: 2;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-promotions__button {
    width: 100%;
  }

  .page-promotions__section-title {
    font-size: 1.7rem;
  }

  .page-promotions__card-grid, .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }

  /* Ensure content images are not too wide on mobile */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }

  /* Override any specific small image styles in content area */
  .page-promotions__card-image,
  .page-promotions__app-image,
  .page-promotions__hero-image {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px !important; /* Enforce min-width for content images */
    min-height: 200px !important; /* Enforce min-height for content images */
  }
}