/* style/index-latest-promotions-express.css */
.page-index-latest-promotions-express {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
}

.page-index-latest-promotions-express__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-latest-promotions-express__hero {
  position: relative;
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-latest-promotions-express__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.9), rgba(255, 193, 7, 0.7)); /* Gradient overlay */
  z-index: 1;
}

.page-index-latest-promotions-express__hero > .page-index-latest-promotions-express__container {
  position: relative;
  z-index: 2;
}

.page-index-latest-promotions-express__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  z-index: 0;
}

.page-index-latest-promotions-express__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-index-latest-promotions-express__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-latest-promotions-express__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-index-latest-promotions-express__button--primary {
  background-color: #ffc107; /* Secondary color */
  color: #0a0a0a; /* Dark text for contrast */
}

.page-index-latest-promotions-express__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-index-latest-promotions-express__button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-index-latest-promotions-express__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-index-latest-promotions-express__section {
  padding: 60px 0;
  background-color: #f8f9fa; /* Light background */
}

.page-index-latest-promotions-express__section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-index-latest-promotions-express__section--highlight {
  background-color: #e9f5ff; /* Lighter shade of primary */
}

.page-index-latest-promotions-express__section--faq {
  background-color: #f2f2f2;
}

.page-index-latest-promotions-express__section--responsible-gambling {
  background-color: #0056b3; /* Darker primary */
  color: #ffffff;
}

.page-index-latest-promotions-express__section--responsible-gambling .page-index-latest-promotions-express__section-title,
.page-index-latest-promotions-express__section--responsible-gambling .page-index-latest-promotions-express__text-intro,
.page-index-latest-promotions-express__section--responsible-gambling .page-index-latest-promotions-express__text-outro,
.page-index-latest-promotions-express__section--responsible-gambling .page-index-latest-promotions-express__responsible-list li {
  color: #ffffff;
}

.page-index-latest-promotions-express__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-latest-promotions-express__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Secondary color */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-latest-promotions-express__text-intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions-express__text-outro {
  text-align: center;
  font-size: 1.1em;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-index-latest-promotions-express__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-index-latest-promotions-express__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  color: #007bff;
}

.page-index-latest-promotions-express__feature-item h3 {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-latest-promotions-express__feature-item p {
  color: #555555;
  font-size: 1em;
}

.page-index-latest-promotions-express__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-index-latest-promotions-express__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-latest-promotions-express__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions-express__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-index-latest-promotions-express__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index-latest-promotions-express__promo-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-index-latest-promotions-express__promo-description {
  color: #555555;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-latest-promotions-express__promo-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-index-latest-promotions-express__promo-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #444444;
  font-size: 0.95em;
}

.page-index-latest-promotions-express__promo-features li::before {
  content: '✔';
  color: #28a745; /* Green checkmark */
  margin-right: 10px;
  font-weight: bold;
}

.page-index-latest-promotions-express__promo-card .page-index-latest-promotions-express__button {
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  text-align: center;
  width: 100%;
  padding: 12px 25px;
  margin-top: auto;
}

.page-index-latest-promotions-express__promo-card .page-index-latest-promotions-express__button:hover {
  background-color: #0056b3;
}

.page-index-latest-promotions-express__faq-list {
  margin-top: 40px;
}

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

.page-index-latest-promotions-express__faq-question {
  font-size: 1.4em;
  color: #007bff; /* Primary color */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-latest-promotions-express__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffc107;
  transition: transform 0.3s ease;
}

.page-index-latest-promotions-express__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-latest-promotions-express__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-index-latest-promotions-express__faq-answer.active {
  display: block;
}

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

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

.page-index-latest-promotions-express__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-index-latest-promotions-express__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: #ffc107; /* Secondary color */
}

.page-index-latest-promotions-express__step-item h3 {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-latest-promotions-express__step-item p {
  color: #555555;
  font-size: 1em;
}

.page-index-latest-promotions-express__step-item p a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-index-latest-promotions-express__step-item p a:hover {
  text-decoration: underline;
}

.page-index-latest-promotions-express__final-cta {
  text-align: center;
  font-size: 1.2em;
  margin-top: 50px;
  font-weight: bold;
  color: #007bff;
}

.page-index-latest-promotions-express__final-cta a {
  color: #ffc107; /* Secondary for emphasis */
  text-decoration: none;
  font-weight: bold;
}

.page-index-latest-promotions-express__final-cta a:hover {
  text-decoration: underline;
}

.page-index-latest-promotions-express__responsible-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0;
}

.page-index-latest-promotions-express__responsible-list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.05em;
  position: relative;
  padding-left: 40px;
}

.page-index-latest-promotions-express__responsible-list li::before {
  content: '⚠';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffc107;
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-latest-promotions-express__main-title {
    font-size: 2.5em;
  }
  .page-index-latest-promotions-express__subtitle {
    font-size: 1.1em;
  }
  .page-index-latest-promotions-express__section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions-express__promo-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions-express__hero {
    padding: 60px 0;
  }
  .page-index-latest-promotions-express__main-title {
    font-size: 2em;
  }
  .page-index-latest-promotions-express__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-latest-promotions-express__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-latest-promotions-express__section {
    padding: 40px 0;
  }
  .page-index-latest-promotions-express__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions-express__promo-grid,
  .page-index-latest-promotions-express__features-grid,
  .page-index-latest-promotions-express__steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions-express__main-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions-express__subtitle {
    font-size: 1em;
  }
  .page-index-latest-promotions-express__button {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index-latest-promotions-express__section-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions-express__promo-title {
    font-size: 1.3em;
  }
  .page-index-latest-promotions-express__faq-question {
    font-size: 1.2em;
  }
  .page-index-latest-promotions-express__faq-answer {
    font-size: 0.9em;
  }
}