/* style/promotions-daily-rebate.css */
.page-promotions-daily-rebate {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Light text on dark background */
  background-color: #1A1A2E; /* Main background color */
  line-height: 1.6;
}

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

.page-promotions-daily-rebate__hero-section {
  background: linear-gradient(135deg, #1A1A2E, #3E1A4E);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-daily-rebate__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-rebate__hero-subtitle {
  font-size: 1.4em;
  color: #D0D0D0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-rebate__cta-button {
  display: inline-block;
  background-color: #E94560; /* Auxiliary color for CTA */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-daily-rebate__cta-button:hover {
  background-color: #C73850;
  transform: translateY(-3px);
}

.page-promotions-daily-rebate__hero-image {
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 500px;
  height: auto;
  opacity: 0.2;
  z-index: 0;
}

.page-promotions-daily-rebate__content-section {
  padding: 60px 0;
  background-color: #1A1A2E;
}

.page-promotions-daily-rebate__section-title {
  font-size: 2.5em;
  color: #E94560;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  padding-top: 20px;
}

.page-promotions-daily-rebate__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-promotions-daily-rebate__text-block a {
  color: #E94560;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-daily-rebate__text-block a:hover {
  text-decoration: underline;
}

.page-promotions-daily-rebate__step-list,
.page-promotions-daily-rebate__rules-list,
.page-promotions-daily-rebate__benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-promotions-daily-rebate__step-list li,
.page-promotions-daily-rebate__rules-list li,
.page-promotions-daily-rebate__benefits-list li {
  background-color: #2A2A4A;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.05em;
  color: #E0E0E0;
  position: relative;
  padding-left: 60px;
}

.page-promotions-daily-rebate__step-list li strong,
.page-promotions-daily-rebate__rules-list li strong,
.page-promotions-daily-rebate__benefits-list li strong {
  color: #E94560;
}

.page-promotions-daily-rebate__step-list li:before,
.page-promotions-daily-rebate__rules-list li:before,
.page-promotions-daily-rebate__benefits-list li:before {
  content: counter(list-item);
  counter-increment: list-item;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E94560;
  color: #FFFFFF;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-promotions-daily-rebate__rules-list li:before,
.page-promotions-daily-rebate__benefits-list li:before {
  content: '✔';
  background-color: #4CAF50;
  font-size: 1.2em;
}

.page-promotions-daily-rebate__cta-group {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-promotions-daily-rebate__cta-group .page-promotions-daily-rebate__cta-button {
  margin: 0 10px;
}

.page-promotions-daily-rebate__cta-button--secondary {
  background-color: #4A4A6A;
}

.page-promotions-daily-rebate__cta-button--secondary:hover {
  background-color: #5A5A7A;
}

.page-promotions-daily-rebate__table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
  background-color: #2A2A4A;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rebate__rebate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.page-promotions-daily-rebate__rebate-table th,
.page-promotions-daily-rebate__rebate-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #3A3A5A;
  color: #E0E0E0;
}

.page-promotions-daily-rebate__rebate-table th {
  background-color: #E94560;
  color: #FFFFFF;
  font-weight: bold;
  text-transform: uppercase;
}

.page-promotions-daily-rebate__rebate-table tr:nth-child(even) {
  background-color: #202038;
}

.page-promotions-daily-rebate__rebate-table tr:hover {
  background-color: #3A3A5A;
}

.page-promotions-daily-rebate__faq-section {
  margin-top: 40px;
}

.page-promotions-daily-rebate__faq-item {
  background-color: #2A2A4A;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rebate__faq-question {
  font-size: 1.3em;
  color: #E94560;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-daily-rebate__faq-question:after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions-daily-rebate__faq-question.active:after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-daily-rebate__faq-answer {
  font-size: 1.05em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 0px;
}

.page-promotions-daily-rebate__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 10px 0;
}

.page-promotions-daily-rebate__cta-group--final {
  margin-bottom: 0;
  padding-bottom: 60px;
}

.page-promotions-daily-rebate__responsible-gaming {
  background-color: #1A1A2E;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #3A3A5A;
}

.page-promotions-daily-rebate__responsible-gaming-title {
  font-size: 2em;
  color: #E94560;
  margin-bottom: 20px;
}

.page-promotions-daily-rebate__responsible-gaming-text {
  font-size: 1.1em;
  color: #D0D0D0;
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-daily-rebate .highlight {
  color: #E94560;
}

.page-promotions-daily-rebate__image-inset {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-daily-rebate__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-daily-rebate__hero-subtitle {
    font-size: 1.2em;
  }

  .page-promotions-daily-rebate__section-title {
    font-size: 2em;
  }

  .page-promotions-daily-rebate__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-daily-rebate__hero-image {
    width: 300px;
    bottom: -20px;
    right: -50px;
  }

  .page-promotions-daily-rebate__step-list li,
  .page-promotions-daily-rebate__rules-list li,
  .page-promotions-daily-rebate__benefits-list li {
    padding-left: 50px;
  }

  .page-promotions-daily-rebate__step-list li:before,
  .page-promotions-daily-rebate__rules-list li:before,
  .page-promotions-daily-rebate__benefits-list li:before {
    left: 15px;
    width: 25px;
    height: 25px;
    font-size: 0.8em;
  }

  .page-promotions-daily-rebate__rules-list li:before,
  .page-promotions-daily-rebate__benefits-list li:before {
    font-size: 1em;
  }

  .page-promotions-daily-rebate__cta-group .page-promotions-daily-rebate__cta-button {
    margin: 10px 0;
    display: block;
  }
}

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

  .page-promotions-daily-rebate__hero-subtitle {
    font-size: 1em;
  }

  .page-promotions-daily-rebate__section-title {
    font-size: 1.8em;
  }

  .page-promotions-daily-rebate__hero-section {
    padding: 80px 0 40px;
  }

  .page-promotions-daily-rebate__hero-image {
    display: none;
  }
}