/* style/promotions-daily-rebate.css */
.page-promotions-daily-rebate {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #F2FFF6); /* Default to Text Main */
  background-color: var(--background-color, #08160F); /* Default to Background */
}

.page-promotions-daily-rebate__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles top padding */
  text-align: center;
  overflow: hidden;
  background-color: var(--background-color, #08160F);
}

.page-promotions-daily-rebate__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-promotions-daily-rebate__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions-daily-rebate__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
  z-index: 1;
  color: var(--text-main-color, #F2FFF6);
}

.page-promotions-daily-rebate__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color, #F2C14E);
}

.page-promotions-daily-rebate__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-promotions-daily-rebate__section {
  padding: 60px 20px;
  text-align: center;
  color: var(--text-main-color, #F2FFF6);
}

.page-promotions-daily-rebate__content-area {
  background-color: var(--card-bg-color, #11271B);
}

.page-promotions-daily-rebate__dark-bg {
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

.page-promotions-daily-rebate__light-bg {
  background-color: var(--card-bg-color, #11271B);
  color: var(--text-main-color, #F2FFF6);
}

.page-promotions-daily-rebate__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--gold-color, #F2C14E);
}

.page-promotions-daily-rebate__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-main-color, #F2FFF6);
}

.page-promotions-daily-rebate__paragraph {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.05em;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-promotions-daily-rebate__list {
  max-width: 800px;
  margin: 0 auto 30px auto;
  list-style-type: disc;
  text-align: left;
  padding-left: 20px;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-promotions-daily-rebate__numbered-list {
  max-width: 800px;
  margin: 0 auto 30px auto;
  list-style-type: decimal;
  text-align: left;
  padding-left: 20px;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-promotions-daily-rebate__list-item {
  margin-bottom: 10px;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-promotions-daily-rebate__list-strong {
  color: var(--text-main-color, #F2FFF6);
}

.page-promotions-daily-rebate__image-block {
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-promotions-daily-rebate__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-promotions-daily-rebate__game-card {
  background-color: var(--deep-green-color, #0A4B2C);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color, #2E7A4E);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-daily-rebate__game-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold-color, #F2C14E);
}

.page-promotions-daily-rebate__game-description {
  font-size: 0.95em;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions-daily-rebate__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions-daily-rebate__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-promotions-daily-rebate__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 5px 20px rgba(42, 209, 111, 0.4);
}

.page-promotions-daily-rebate__btn-secondary {
  background: var(--card-bg-color, #11271B);
  color: var(--gold-color, #F2C14E);
  border: 2px solid var(--gold-color, #F2C14E);
}

.page-promotions-daily-rebate__btn-secondary:hover {
  background: var(--gold-color, #F2C14E);
  color: var(--card-bg-color, #11271B);
  box-shadow: 0 5px 20px rgba(242, 193, 78, 0.4);
}

.page-promotions-daily-rebate__cta-wrapper {
  max-width: 800px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-promotions-daily-rebate__cta-section {
  padding: 80px 20px;
}

.page-promotions-daily-rebate__cta-content {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-promotions-daily-rebate__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* FAQ styles */
.page-promotions-daily-rebate__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-promotions-daily-rebate__faq-item {
  background-color: var(--deep-green-color, #0A4B2C);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-daily-rebate__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--text-main-color, #F2FFF6);
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative; /* For custom toggle icon */
}

.page-promotions-daily-rebate__faq-question:hover {
  background-color: var(--dark-green-hover, #1e4a30); /* Slightly lighter green for hover */
}

.page-promotions-daily-rebate__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-daily-rebate__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--gold-color, #F2C14E);
}

.page-promotions-daily-rebate__faq-item[open] .page-promotions-daily-rebate__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-daily-rebate__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: var(--text-secondary-color, #A7D9B8);
  line-height: 1.7;
}

.page-promotions-daily-rebate__faq-answer p {
  margin-bottom: 0;
  color: var(--text-secondary-color, #A7D9B8);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions-daily-rebate__hero-content {
    margin-top: 20px;
  }

  .page-promotions-daily-rebate__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-promotions-daily-rebate__section-title {
    font-size: clamp(1.6em, 4vw, 2.5em);
  }

  .page-promotions-daily-rebate__game-categories {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-rebate {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-promotions-daily-rebate__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-promotions-daily-rebate__main-title {
    font-size: clamp(1.8em, 6vw, 2.8em);
  }

  .page-promotions-daily-rebate__intro-text {
    font-size: 1em;
  }

  .page-promotions-daily-rebate__section {
    padding: 40px 15px;
  }

  .page-promotions-daily-rebate__section-title {
    font-size: clamp(1.5em, 5.5vw, 2.2em);
    margin-bottom: 30px;
  }

  .page-promotions-daily-rebate__sub-title {
    font-size: clamp(1.2em, 4vw, 1.8em);
    margin-top: 30px;
  }

  .page-promotions-daily-rebate__paragraph,
  .page-promotions-daily-rebate__list,
  .page-promotions-daily-rebate__numbered-list {
    font-size: 0.95em;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-promotions-daily-rebate__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-promotions-daily-rebate__image-block,
  .page-promotions-daily-rebate__game-categories,
  .page-promotions-daily-rebate__cta-wrapper,
  .page-promotions-daily-rebate__cta-section,
  .page-promotions-daily-rebate__cta-content,
  .page-promotions-daily-rebate__cta-buttons,
  .page-promotions-daily-rebate__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions-daily-rebate__game-categories {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-promotions-daily-rebate__game-card {
    padding: 25px;
  }

  .page-promotions-daily-rebate__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

  .page-promotions-daily-rebate__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-daily-rebate__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-promotions-daily-rebate__faq-answer {
    padding: 0 20px 15px 20px;
  }
}