/* style/promo.css */
.page-promo {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-promo__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  background-color: #f8f8f8; /* Fallback background */
}

.page-promo__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(0.7); - Removed as per strict filter rule */
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #f0f0f0; /* Light text over hero image */
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for prominence */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9); /* Strong text shadow for readability */
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8); /* Strong text shadow for readability */
}

.page-promo__hero-cta-button {
  display: inline-block;
  background-color: #CC0000; /* Main brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-promo__hero-cta-button:hover {
  background-color: #FFD700; /* Auxiliary brand color on hover */
  color: #333333;
  transform: translateY(-2px);
}

.page-promo__overview-section,
.page-promo__promo-categories,
.page-promo__how-to-claim-section,
.page-promo__responsible-gaming-section,
.page-promo__cta-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.page-promo__overview-title,
.page-promo__categories-title,
.page-promo__how-to-claim-title,
.page-promo__responsible-gaming-title,
.page-promo__cta-title {
  font-size: 2.5em;
  color: #CC0000; /* Main brand color */
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promo__overview-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #444444;
}

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

.page-promo__category-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

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

.page-promo__card-image-wrapper {
  width: 100%;
  height: 200px; /* Fixed height for consistency, > 200px */
  overflow: hidden;
}

.page-promo__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promo__card-title {
  font-size: 1.5em;
  color: #CC0000;
  padding: 15px 20px 10px;
  margin: 0;
}

.page-promo__card-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #333333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 20px;
  transition: background-color 0.3s ease;
}

.page-promo__card-button:hover {
  background-color: #e0b000;
}

.page-promo__how-to-claim-section {
  background-color: #fcfcfc;
  padding: 60px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-promo__claim-step {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  border-top: 5px solid #CC0000;
}

.page-promo__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #333333;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promo__step-title {
  font-size: 1.3em;
  color: #CC0000;
  margin-bottom: 10px;
}

.page-promo__step-description {
  font-size: 0.9em;
  color: #666666;
}

.page-promo__step-button {
  display: inline-block;
  background-color: #CC0000;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-promo__step-button:hover {
  background-color: #a30000;
}

.page-promo__claim-image-wrapper {
  margin-top: 50px;
}

.page-promo__claim-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promo__responsible-gaming-section {
  background-color: #CC0000;
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 10px;
}

.page-promo__responsible-gaming-title {
  color: #FFD700;
  font-size: 2.2em;
  margin-bottom: 25px;
}

.page-promo__responsible-gaming-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-promo__responsible-gaming-button {
  display: inline-block;
  background-color: #FFD700;
  color: #333333;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__responsible-gaming-button:hover {
  background-color: #e0b000;
}

.page-promo__responsible-gaming-image-wrapper {
  margin-top: 40px;
}

.page-promo__responsible-gaming-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promo__cta-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.page-promo__cta-title {
  color: #CC0000;
  font-size: 2.8em;
  margin-bottom: 20px;
}

.page-promo__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-promo__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__cta-button--primary {
  background-color: #CC0000;
  color: #ffffff;
}

.page-promo__cta-button--primary:hover {
  background-color: #a30000;
  transform: translateY(-2px);
}

.page-promo__cta-button--secondary {
  background-color: #FFD700;
  color: #333333;
}

.page-promo__cta-button--secondary:hover {
  background-color: #e0b000;
  transform: translateY(-2px);
}

.page-promo__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__overview-title,
  .page-promo__categories-title,
  .page-promo__how-to-claim-title,
  .page-promo__responsible-gaming-title,
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__category-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-promo__overview-section,
  .page-promo__promo-categories,
  .page-promo__how-to-claim-section,
  .page-promo__responsible-gaming-section,
  .page-promo__cta-section {
    margin: 30px auto;
    padding: 15px;
  }
  .page-promo__overview-title,
  .page-promo__categories-title,
  .page-promo__how-to-claim-title,
  .page-promo__responsible-gaming-title,
  .page-promo__cta-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-promo__category-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__card-title {
    font-size: 1.3em;
  }
  .page-promo__card-description {
    font-size: 0.9em;
  }
  .page-promo__claim-steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-promo__step-title {
    font-size: 1.2em;
  }
  .page-promo__responsible-gaming-title {
    font-size: 1.8em;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__cta-button {
    width: 100%;
    max-width: 300px;
  }
  .page-promo img {
    max-width: 100%;
    height: auto; /* Ensures images are responsive and do not overflow */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__overview-title,
  .page-promo__categories-title,
  .page-promo__how-to-claim-title,
  .page-promo__responsible-gaming-title,
  .page-promo__cta-title {
    font-size: 1.5em;
  }
  .page-promo__cta-button {
    font-size: 1em;
  }
}