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

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

.page-promo__section {
  padding: 60px 0;
  text-align: center;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__section-intro {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Slightly darken background image for text readability */
}

.page-promo__hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 900;
  color: #ffc107; /* Auxiliary color for strong impact */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #333333;
  border: 2px solid #ffc107;
}

.page-promo__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-promo__button--secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-promo__button--secondary:hover {
  background-color: rgba(255, 193, 7, 0.1);
  transform: translateY(-2px);
}

.page-promo__button--tertiary {
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-promo__button--tertiary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-promo__section--why-choose {
  background-color: #f9f9f9;
}

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

.page-promo__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__feature-image {
  width: 100%;
  max-width: 400px; /* Constrain image size */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-promo__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promo__feature-description {
  color: #666666;
  font-size: 1em;
}

.page-promo__section--how-to-claim {
  background-color: #eaf6ff; /* Light blue background */
}

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

.page-promo__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-promo__step-image {
  width: 100%;
  max-width: 600px; /* Constrain image size */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-promo__step-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

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

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

.page-promo__section--games {
  background-color: #ffffff;
}

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

.page-promo__game-card {
  background-color: #fcfcfc;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promo__game-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-promo__game-card h3 {
  padding: 20px 20px 0;
}

.page-promo__game-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-promo__game-link {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__game-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-promo__game-description {
  color: #666666;
  font-size: 0.95em;
  padding: 0 20px 20px;
}

.page-promo__section--exclusive-bonuses {
  background-color: #f9f9f9;
}

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

.page-promo__bonus-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promo__bonus-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-promo__bonus-card h3 {
  padding: 20px 20px 0;
}

.page-promo__bonus-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-promo__bonus-description {
  color: #666666;
  font-size: 0.95em;
  padding: 0 20px 20px;
}

.page-promo__section--mobile-app {
  background: linear-gradient(135deg, #eaf6ff 0%, #ffffff 100%);
  text-align: left;
}

.page-promo__mobile-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-promo__mobile-text-content {
  max-width: 600px;
}

.page-promo__mobile-text-content .page-promo__section-title {
  text-align: left;
}

.page-promo__mobile-text-content .page-promo__section-intro {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-promo__mobile-features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-promo__mobile-feature-item {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-promo__mobile-feature-item::before {
  content: '✔';
  color: #ffc107;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promo__mobile-image-wrapper {
  flex-shrink: 0;
}

.page-promo__mobile-image {
  width: 100%;
  max-width: 400px; /* Max width for phone image */
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-promo__section--faq {
  background-color: #f0f8ff;
}

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

.page-promo__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-promo__faq-answer {
  color: #555555;
  font-size: 1em;
}

.page-promo__section--cta-final {
  background-color: #007bff;
  color: #ffffff;
  padding: 80px 20px;
}

.page-promo__section--cta-final .page-promo__section-title {
  color: #ffc107;
}

.page-promo__section--cta-final .page-promo__section-intro {
  color: #f0f0f0;
}

.page-promo__final-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-promo__mobile-content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .page-promo__mobile-text-content {
    padding-right: 40px;
  }
}

@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.2em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 120px); /* Keep padding for mobile */
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-promo__section {
    padding: 40px 0;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo__features-grid, .page-promo__steps-grid, .page-promo__games-grid, .page-promo__bonus-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__mobile-content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__mobile-text-content .page-promo__section-title,
  .page-promo__mobile-text-content .page-promo__section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .page-promo__mobile-features-list {
    text-align: left;
    padding-left: 20px;
  }
  .page-promo__mobile-feature-item {
    padding-left: 25px;
  }
  .page-promo__mobile-feature-item::before {
    left: 0;
  }
  .page-promo__mobile-image {
    max-width: 300px;
  }
  .page-promo__final-actions {
    flex-direction: column;
    gap: 15px;
  }

  /* Critical: Mobile content area image responsiveness */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}