/* style/promotions-bk8-cashback.css */
.page-promotions-bk8-cashback {
  font-family: 'Arial', sans-serif;
  color: #e5e5d1; /* Light text for dark background */
  background-color: #1A1A2E;
  line-height: 1.6;
}

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

.page-promotions-bk8-cashback__hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5f 100%);
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-bk8-cashback__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-promotions-bk8-cashback__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-promotions-bk8-cashback__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(50%);
}

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

.page-promotions-bk8-cashback__subtitle {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-bk8-cashback__cta-button {
  display: inline-block;
  background-color: #E9B000;
  color: #1A1A2E;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-bk8-cashback__cta-button:hover {
  background-color: #ffc800;
  transform: translateY(-3px);
}

.page-promotions-bk8-cashback__cta-button--secondary {
  background-color: #3a3a5f;
  color: #E9B000;
  border: 2px solid #E9B000;
}

.page-promotions-bk8-cashback__cta-button--secondary:hover {
  background-color: #5f5f6d;
  color: #ffc800;
}

.page-promotions-bk8-cashback__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(233, 176, 0, 0.1);
}

.page-promotions-bk8-cashback__section:last-of-type {
  border-bottom: none;
}

.page-promotions-bk8-cashback__section-title {
  font-size: 2.5em;
  color: #E9B000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promotions-bk8-cashback__intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-bk8-cashback__intro strong {
  color: #E9B000;
}

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

.page-promotions-bk8-cashback__card {
  background-color: #2a2a4e;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-bk8-cashback__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-bk8-cashback__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-bk8-cashback__card-title {
  font-size: 1.5em;
  color: #E9B000;
  margin-bottom: 15px;
}

.page-promotions-bk8-cashback__card-button {
  display: inline-block;
  background-color: #E9B000;
  color: #1A1A2E;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-promotions-bk8-cashback__card-button:hover {
  background-color: #ffc800;
}

.page-promotions-bk8-cashback__how-to-claim ol {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.page-promotions-bk8-cashback__how-to-claim li {
  background-color: #2a2a4e;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 8px;
  position: relative;
  padding-left: 70px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-bk8-cashback__how-to-claim li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E9B000;
  color: #1A1A2E;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-promotions-bk8-cashback__how-to-claim li h3 {
  color: #E9B000;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-bk8-cashback__how-to-claim li p {
  font-size: 1em;
  margin-bottom: 0;
}

.page-promotions-bk8-cashback__how-to-claim li a {
  color: #E9B000;
  text-decoration: underline;
}

.page-promotions-bk8-cashback__action-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  gap: 30px;
}

.page-promotions-bk8-cashback__process-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-bk8-cashback__terms ul {
  list-style: none;
  padding: 0;
}

.page-promotions-bk8-cashback__terms li {
  background-color: #2a2a4e;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-bk8-cashback__terms li strong {
  color: #E9B000;
}

.page-promotions-bk8-cashback__why-bk8 ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.page-promotions-bk8-cashback__why-bk8 ul li {
  background-color: #2a2a4e;
  padding: 20px;
  border-left: 5px solid #E9B000;
  border-radius: 8px;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-bk8-cashback__why-bk8 ul li strong {
  color: #E9B000;
}

.page-promotions-bk8-cashback__benefit-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-promotions-bk8-cashback__faq-item {
  background-color: #2a2a4e;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-bk8-cashback__faq-question {
  color: #E9B000;
  font-size: 1.3em;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-promotions-bk8-cashback__faq-question:hover {
  background-color: #3a3a5f;
}

.page-promotions-bk8-cashback__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-bk8-cashback__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions-bk8-cashback__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-bk8-cashback__faq-answer.open {
  max-height: 200px; /* Adjust based on content */
  padding-top: 10px;
}

.page-promotions-bk8-cashback__final-cta {
  background: linear-gradient(90deg, #1A1A2E, #3a3a5f);
  text-align: center;
  padding: 80px 0;
}

.page-promotions-bk8-cashback__final-cta-content {
  max-width: 800px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-promotions-bk8-cashback__title {
    font-size: 4.5em;
  }

  .page-promotions-bk8-cashback__subtitle {
    font-size: 1.6em;
  }

  .page-promotions-bk8-cashback__why-bk8 ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .page-promotions-bk8-cashback__hero {
    padding: 120px 0;
  }

  .page-promotions-bk8-cashback__title {
    font-size: 5em;
  }

  .page-promotions-bk8-cashback__section {
    padding: 80px 0;
  }

  .page-promotions-bk8-cashback__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-promotions-bk8-cashback__why-bk8 ul {
    grid-template-columns: repeat(3, 1fr);
  }
}