/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A2342; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-promotions__section-title {
  color: #FFD700; /* Gold for main titles */
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-promotions__section-subtitle {
  color: #B0C4DE; /* Lighter blue for subtitles */
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions__hero-section {
  background: linear-gradient(135deg, #0A2342, #1A3F6C);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  text-align: center;
}

.page-promotions__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
  background-color: #E0B500;
  border-color: #E0B500;
  transform: translateY(-2px);
}

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

.page-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-promotions__btn--center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 300px;
}

.page-promotions__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-promotions__intro-section, .page-promotions__types-section, .page-promotions__featured-section, .page-promotions__how-to-claim-section, .page-promotions__detail-pages-list, .page-promotions__responsible-gambling-section, .page-promotions__cta-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-promotions__intro-item {
  background-color: #1A3F6C; /* Slightly lighter blue for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-promotions__intro-item:hover {
  transform: translateY(-10px);
}

.page-promotions__intro-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions__intro-item-title {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-promotions__intro-item-description {
  color: #B0C4DE;
  font-size: 0.95em;
}

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

.page-promotions__type-card {
  background-color: #1A3F6C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-promotions__type-card:hover {
  transform: translateY(-10px);
}

.page-promotions__type-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-promotions__type-card-title {
  color: #FFD700;
  font-size: 1.4em;
  padding: 15px 20px 5px;
}

.page-promotions__type-card-description {
  color: #B0C4DE;
  font-size: 0.9em;
  padding: 0 20px 20px;
}

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

.page-promotions__promotion-card {
  background-color: #1A3F6C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-10px);
}

.page-promotions__promotion-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-promotions__promotion-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__promotion-card-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-promotions__promotion-card-description {
  color: #B0C4DE;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__promotion-card-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto; /* Push buttons to the bottom */
}

.page-promotions__promotion-card-actions .page-promotions__btn {
  flex: 1;
  padding: 10px 15px;
  font-size: 0.9em;
}

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

.page-promotions__step-item {
  background-color: #1A3F6C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.page-promotions__step-number {
  background-color: #FFD700;
  color: #0A2342;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: -55px auto 20px auto; /* Position above the card */
  border: 3px solid #0A2342;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-promotions__step-item:first-child .page-promotions__step-number {
    margin-top: -55px;
}

.page-promotions__step-title {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-promotions__step-description {
  color: #B0C4DE;
  font-size: 0.95em;
}

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

.page-promotions__detail-card {
  background-color: #1A3F6C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.page-promotions__detail-card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-promotions__detail-card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__detail-card-title a:hover {
  color: #E0B500;
  text-decoration: underline;
}

.page-promotions__detail-card-description {
  color: #B0C4DE;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__responsible-gambling-section {
  background-color: #0A2342;
  padding: 80px 0;
  text-align: center;
}

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

.page-promotions__responsible-image {
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.page-promotions__responsible-content p {
  max-width: 800px;
  color: #B0C4DE;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-promotions__cta-section {
  background: linear-gradient(45deg, #1A3F6C, #0A2342);
  padding: 80px 0;
  text-align: center;
}

.page-promotions__cta-title {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__cta-description {
  color: #E0E0E0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions__hero-title {
    font-size: 2.5em;
  }

  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__hero-description, .page-promotions__section-subtitle, .page-promotions__cta-description {
    font-size: 1em;
  }

  .page-promotions__intro-grid, .page-promotions__types-grid, .page-promotions__promotions-grid, .page-promotions__steps-grid, .page-promotions__detail-cards {
    grid-template-columns: 1fr;
  }

  .page-promotions__promotion-card-actions {
    flex-direction: column;
  }

  .page-promotions__promotion-card-actions .page-promotions__btn {
    width: 100%;
  }

  .page-promotions__step-number {
    margin-top: -40px; /* Adjust for smaller screens */
  }

  .page-promotions__responsible-content {
    gap: 20px;
  }

  .page-promotions__responsible-image {
    max-width: 200px;
  }

  .page-promotions__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
  }

  .page-promotions__hero-description, .page-promotions__section-subtitle, .page-promotions__cta-description {
    font-size: 0.9em;
  }

  .page-promotions__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-promotions__cta-title {
    font-size: 1.8em;
  }
}