/* style/promotions-limited-time-events.css */
.page-promotions-limited-time-events {
  font-family: 'Arial', sans-serif;
  color: #E2E8F0; /* Light text for dark background */
  background-color: #1A202C; /* Main background color */
  line-height: 1.6;
}

.page-promotions-limited-time-events__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-limited-time-events__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #E53E3E 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions-limited-time-events__hero-content {
  max-width: 800px;
  z-index: 10;
  position: relative;
}

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

.page-promotions-limited-time-events__hero-description {
  font-size: 1.3em;
  color: #CBD5E0;
  margin-bottom: 40px;
}

.page-promotions-limited-time-events__cta-button {
  display: inline-block;
  background-color: #E53E3E; /* Accent color */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-limited-time-events__cta-button:hover {
  background-color: #C53030;
  transform: translateY(-3px);
}

.page-promotions-limited-time-events__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-promotions-limited-time-events__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-promotions-limited-time-events__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
}

.page-promotions-limited-time-events__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promotions-limited-time-events__introduction-section,
.page-promotions-limited-time-events__promotions-grid,
.page-promotions-limited-time-events__events-section,
.page-promotions-limited-time-events__how-to-participate,
.page-promotions-limited-time-events__responsible-gambling,
.page-promotions-limited-time-events__faq,
.page-promotions-limited-time-events__call-to-action {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-limited-time-events__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-limited-time-events__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E53E3E;
  border-radius: 2px;
}

.page-promotions-limited-time-events__paragraph {
  font-size: 1.1em;
  color: #CBD5E0;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-limited-time-events__promo-card {
  background-color: #2D3748; /* Slightly lighter dark for cards */
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions-limited-time-events__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-promotions-limited-time-events__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-promotions-limited-time-events__card-title {
  font-size: 1.6em;
  color: #E53E3E;
  margin: 20px 20px 10px 20px;
}

.page-promotions-limited-time-events__card-description {
  font-size: 1em;
  color: #A0AEC0;
  padding: 0 20px;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-promotions-limited-time-events__card-features {
  list-style: none;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-promotions-limited-time-events__card-features li {
  color: #CBD5E0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  font-size: 0.95em;
}

.page-promotions-limited-time-events__icon {
  margin-right: 10px;
  color: #48BB78; /* Green for checkmark */
}

.page-promotions-limited-time-events__icon--check::before {
  content: '✔';
  font-weight: bold;
}

.page-promotions-limited-time-events__card-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px 20px;
  padding: 12px 0;
  background-color: #48BB78; /* Green button for action */
  color: #FFFFFF;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions-limited-time-events__card-button:hover {
  background-color: #38A169;
}

.page-promotions-limited-time-events__event-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions-limited-time-events__event-item {
  background-color: #2D3748;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  text-align: left;
  padding: 25px;
  gap: 30px;
}

.page-promotions-limited-time-events__event-image {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.page-promotions-limited-time-events__event-details {
  flex-grow: 1;
}

.page-promotions-limited-time-events__event-title {
  font-size: 2em;
  color: #E53E3E;
  margin-bottom: 10px;
}

.page-promotions-limited-time-events__event-date {
  font-size: 1.1em;
  color: #A0AEC0;
  margin-bottom: 15px;
}

.page-promotions-limited-time-events__event-description {
  font-size: 1em;
  color: #CBD5E0;
  margin-bottom: 20px;
}

.page-promotions-limited-time-events__event-button {
  display: inline-block;
  background-color: #E53E3E;
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions-limited-time-events__event-button:hover {
  background-color: #C53030;
}

.page-promotions-limited-time-events__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-promotions-limited-time-events__steps-list li {
  background-color: #2D3748;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  font-size: 1.1em;
  color: #CBD5E0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-events__step-number {
  font-size: 1.8em;
  font-weight: bold;
  color: #E53E3E;
  margin-right: 15px;
  line-height: 1;
  flex-shrink: 0;
}

.page-promotions-limited-time-events__steps-list li a {
  color: #E53E3E;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-limited-time-events__steps-list li a:hover {
  text-decoration: underline;
}

.page-promotions-limited-time-events__responsible-gambling .page-promotions-limited-time-events__text-link {
  color: #48BB78;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions-limited-time-events__responsible-gambling .page-promotions-limited-time-events__text-link:hover {
  color: #38A169;
  text-decoration: underline;
}

.page-promotions-limited-time-events__faq-item {
  background-color: #2D3748;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 20px 30px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-limited-time-events__faq-question {
  font-size: 1.4em;
  color: #E53E3E;
  margin-bottom: 10px;
}

.page-promotions-limited-time-events__faq-answer {
  font-size: 1em;
  color: #A0AEC0;
}

.page-promotions-limited-time-events__faq-answer a {
  color: #E53E3E;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-limited-time-events__faq-answer a:hover {
  text-decoration: underline;
}

.page-promotions-limited-time-events__call-to-action {
  background-color: #2D3748;
  padding: 80px 0;
}

.page-promotions-limited-time-events__cta-box {
  background: linear-gradient(90deg, #E53E3E 0%, #C53030 100%);
  border-radius: 15px;
  padding: 50px 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-limited-time-events__cta-title {
  font-size: 2.8em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-limited-time-events__cta-description {
  font-size: 1.2em;
  color: #F7FAFC;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-limited-time-events__cta-description a {
  color: #F7FAFC;
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions-limited-time-events__cta-description a:hover {
  color: #FFFFFF;
}

.page-promotions-limited-time-events .highlight {
  color: #F6AD55; /* Golden accent for highlights */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-limited-time-events__hero-title {
    font-size: 3em;
  }
  .page-promotions-limited-time-events__section-title {
    font-size: 2em;
  }
  .page-promotions-limited-time-events__event-item {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions-limited-time-events__event-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
  }
  .page-promotions-limited-time-events__event-details {
    padding: 0 20px;
  }
  .page-promotions-limited-time-events__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-limited-time-events__hero-section {
    padding: 80px 0;
  }
  .page-promotions-limited-time-events__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-limited-time-events__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-limited-time-events__section-title {
    font-size: 1.8em;
  }
  .page-promotions-limited-time-events__promo-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 350px;
  }
  .page-promotions-limited-time-events__event-title {
    font-size: 1.6em;
  }
  .page-promotions-limited-time-events__steps-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-promotions-limited-time-events__step-number {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .page-promotions-limited-time-events__cta-title {
    font-size: 2em;
  }
  .page-promotions-limited-time-events__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-limited-time-events__hero-title {
    font-size: 2em;
  }
  .page-promotions-limited-time-events__hero-description {
    font-size: 1em;
  }
  .page-promotions-limited-time-events__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-limited-time-events__section-title {
    font-size: 1.5em;
  }
  .page-promotions-limited-time-events__paragraph {
    font-size: 0.95em;
  }
  .page-promotions-limited-time-events__promo-card {
    max-width: 90%;
  }
  .page-promotions-limited-time-events__event-item {
    padding: 15px;
  }
  .page-promotions-limited-time-events__event-image {
    max-width: 250px;
  }
  .page-promotions-limited-time-events__event-title {
    font-size: 1.4em;
  }
  .page-promotions-limited-time-events__faq-question {
    font-size: 1.2em;
  }
  .page-promotions-limited-time-events__cta-title {
    font-size: 1.8em;
  }
}