/* style/s66-entertainment-center-latest-promotions.css */
.page-s66-entertainment-center-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray text for dark background */
  background-color: #1A2E40; /* Main brand dark blue/grey */
  line-height: 1.6;
}

.page-s66-entertainment-center-latest-promotions .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-s66-entertainment-center-latest-promotions .promo-hero-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #FFFFFF;
}

.page-s66-entertainment-center-latest-promotions .promo-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
}

.page-s66-entertainment-center-latest-promotions .promo-hero-section .container {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
}

.page-s66-entertainment-center-latest-promotions .promo-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-s66-entertainment-center-latest-promotions .promo-hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

/* General Section Styling */
.page-s66-entertainment-center-latest-promotions section {
  padding: 60px 0;
}

.page-s66-entertainment-center-latest-promotions .section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-s66-entertainment-center-latest-promotions .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

/* Buttons */
.page-s66-entertainment-center-latest-promotions .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  text-align: center;
}

.page-s66-entertainment-center-latest-promotions .btn-primary {
  background-color: #FFD700;
  color: #1A2E40; /* Dark text on gold button */
}

.page-s66-entertainment-center-latest-promotions .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-s66-entertainment-center-latest-promotions .btn-secondary {
  background-color: #3A4E60; /* Slightly lighter dark blue */
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-s66-entertainment-center-latest-promotions .btn-secondary:hover {
  background-color: #4A5E70;
  transform: translateY(-2px);
}

/* Intro Section */
.page-s66-entertainment-center-latest-promotions .intro-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #B0B0B0;
}

/* Promotion Cards */
.page-s66-entertainment-center-latest-promotions .promotion-list-section {
  padding-top: 20px;
}

.page-s66-entertainment-center-latest-promotions .promotion-card {
  display: flex;
  flex-wrap: wrap;
  background-color: #2A3E50;
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-s66-entertainment-center-latest-promotions .promotion-card.reverse {
  flex-direction: row-reverse;
}

.page-s66-entertainment-center-latest-promotions .promotion-image {
  flex: 1 1 40%;
  min-width: 300px;
  height: auto;
  object-fit: cover;
}

.page-s66-entertainment-center-latest-promotions .promotion-content {
  flex: 1 1 60%;
  min-width: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-s66-entertainment-center-latest-promotions .promotion-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-s66-entertainment-center-latest-promotions .promotion-content p {
  margin-bottom: 15px;
  color: #C0C0C0;
}

.page-s66-entertainment-center-latest-promotions .promotion-details {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-s66-entertainment-center-latest-promotions .promotion-details li {
  background-color: #3A4E60;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-left: 4px solid #FFD700;
  border-radius: 4px;
  color: #E0E0E0;
}

.page-s66-entertainment-center-latest-promotions .promotion-details li strong {
  color: #FFD700;
}

/* How to Claim Section */
.page-s66-entertainment-center-latest-promotions .how-to-claim-section .steps-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-s66-entertainment-center-latest-promotions .how-to-claim-section .steps-list li {
  background-color: #2A3E50;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  color: #E0E0E0;
  min-height: 150px;
}

.page-s66-entertainment-center-latest-promotions .how-to-claim-section .steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #FFD700;
  color: #1A2E40;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  border: 3px solid #1A2E40;
}

.page-s66-entertainment-center-latest-promotions .how-to-claim-section .steps-list li strong {
  display: block;
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #FFD700;
  padding-top: 20px; /* Space for the number bubble */
}

.page-s66-entertainment-center-latest-promotions .how-to-claim-section .steps-list li a {
  color: #FFD700;
  text-decoration: underline;
}

.page-s66-entertainment-center-latest-promotions .how-to-claim-section .steps-list li a:hover {
  color: #e6c200;
}

/* Terms Section */
.page-s66-entertainment-center-latest-promotions .terms-list {
  list-style: disc;
  margin-left: 20px;
  color: #C0C0C0;
}

.page-s66-entertainment-center-latest-promotions .terms-list li {
  margin-bottom: 10px;
}

/* FAQ Section */
.page-s66-entertainment-center-latest-promotions .faq-item {
  background-color: #2A3E50;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-s66-entertainment-center-latest-promotions .faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-s66-entertainment-center-latest-promotions .faq-answer {
  color: #C0C0C0;
}

.page-s66-entertainment-center-latest-promotions .faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-s66-entertainment-center-latest-promotions .faq-answer a:hover {
  color: #e6c200;
}

/* CTA Section */
.page-s66-entertainment-center-latest-promotions .cta-section {
  text-align: center;
  background-color: #2A3E50;
  padding: 60px 20px;
  border-radius: 10px;
  margin-top: 40px;
}

.page-s66-entertainment-center-latest-promotions .cta-section .section-title {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-s66-entertainment-center-latest-promotions .cta-section .section-title::after {
  background-color: #FFD700;
}

.page-s66-entertainment-center-latest-promotions .cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-s66-entertainment-center-latest-promotions .promo-hero-title {
    font-size: 2.5em;
  }

  .page-s66-entertainment-center-latest-promotions .promo-hero-subtitle {
    font-size: 1em;
  }

  .page-s66-entertainment-center-latest-promotions .section-title {
    font-size: 2em;
  }

  .page-s66-entertainment-center-latest-promotions .promotion-card {
    flex-direction: column;
  }

  .page-s66-entertainment-center-latest-promotions .promotion-card.reverse {
    flex-direction: column;
  }

  .page-s66-entertainment-center-latest-promotions .promotion-image {
    width: 100%;
    height: 250px;
  }

  .page-s66-entertainment-center-latest-promotions .promotion-content {
    padding: 20px;
  }

  .page-s66-entertainment-center-latest-promotions .promotion-title {
    font-size: 1.5em;
  }

  .page-s66-entertainment-center-latest-promotions .how-to-claim-section .steps-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-s66-entertainment-center-latest-promotions .promo-hero-section {
    height: 400px;
  }
  .page-s66-entertainment-center-latest-promotions .promo-hero-title {
    font-size: 2em;
  }
  .page-s66-entertainment-center-latest-promotions .promo-hero-section .container {
    padding: 20px;
  }
  .page-s66-entertainment-center-latest-promotions .btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-s66-entertainment-center-latest-promotions .section-title {
    font-size: 1.8em;
  }
  .page-s66-entertainment-center-latest-promotions .faq-question {
    font-size: 1.2em;
  }
}