/* style/promotions-daily-rebate-details.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --dark-bg-color: #0a0a0a;
  --text-on-dark: #ffffff;
  --text-on-light: #333333;
  --login-button-color: #EA7C07;
}

.page-promotions-daily-rebate-details {
  color: var(--text-on-dark); /* Default text color for the main content area */
}

.page-promotions-daily-rebate-details__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  box-sizing: border-box;
}

.page-promotions-daily-rebate-details__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
  border-radius: 8px;
}

.page-promotions-daily-rebate-details__hero-content {
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 30px 0;
  box-sizing: border-box;
  z-index: 1;
  color: var(--text-on-dark);
}

.page-promotions-daily-rebate-details__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-rebate-details__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.page-promotions-daily-rebate-details__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-daily-rebate-details__btn-primary,
.page-promotions-daily-rebate-details__btn-secondary {
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-promotions-daily-rebate-details__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-promotions-daily-rebate-details__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-promotions-daily-rebate-details__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-promotions-daily-rebate-details__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-promotions-daily-rebate-details__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-promotions-daily-rebate-details__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-promotions-daily-rebate-details__section-title--white {
  color: var(--secondary-color);
}

.page-promotions-daily-rebate-details__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-on-light);
}

.page-promotions-daily-rebate-details__text-block--white {
  color: var(--text-on-dark);
}

/* Background colors for sections */
.page-promotions-daily-rebate-details__dark-bg {
  background-color: var(--dark-bg-color);
  color: var(--text-on-dark);
}

.page-promotions-daily-rebate-details__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-on-light);
}

/* How It Works Section */
.page-promotions-daily-rebate-details__how-it-works .page-promotions-daily-rebate-details__section-title {
  color: var(--secondary-color);
}

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

.page-promotions-daily-rebate-details__step-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-on-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-daily-rebate-details__step-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions-daily-rebate-details__step-title {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions-daily-rebate-details__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-on-dark);
}

.page-promotions-daily-rebate-details__cta-buttons--center {
  margin-top: 50px;
}

/* Benefits Section */
.page-promotions-daily-rebate-details__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-daily-rebate-details__benefit-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: var(--text-on-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-daily-rebate-details__benefit-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions-daily-rebate-details__benefit-title {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions-daily-rebate-details__benefit-description {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-on-light);
}

/* Eligible Games Section */
.page-promotions-daily-rebate-details__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-daily-rebate-details__game-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-on-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-daily-rebate-details__game-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-promotions-daily-rebate-details__game-title {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-promotions-daily-rebate-details__game-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: var(--text-on-dark);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions-daily-rebate-details__btn-link {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.page-promotions-daily-rebate-details__btn-link:hover {
  background-color: #1e87c0;
}

/* Terms and Conditions Section */
.page-promotions-daily-rebate-details__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-daily-rebate-details__terms-item {
  background: #f9f9f9;
  border-left: 5px solid var(--primary-color);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-on-light);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-promotions-daily-rebate-details__terms-item strong {
  color: var(--primary-color);
}

/* Claim Guide Section */
.page-promotions-daily-rebate-details__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-daily-rebate-details__guide-item {
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid var(--primary-color);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: var(--text-on-dark);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.page-promotions-daily-rebate-details__guide-title {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-promotions-daily-rebate-details__guide-description {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-on-dark);
}

/* FAQ Section */
.page-promotions-daily-rebate-details__faq-list {
  margin-top: 30px;
}

.page-promotions-daily-rebate-details__faq-item {
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  color: var(--text-on-light);
}

.page-promotions-daily-rebate-details__faq-item summary {
  list-style: none; /* Hide default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  outline: none;
}

.page-promotions-daily-rebate-details__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions-daily-rebate-details__faq-qtext {
  flex-grow: 1;
}

.page-promotions-daily-rebate-details__faq-toggle {
  font-size: 1.5em;
  font-weight: 700;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-promotions-daily-rebate-details__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-on-light);
  border-top: 1px solid #eee;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-promotions-daily-rebate-details__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

  .page-promotions-daily-rebate-details__hero-description {
    font-size: 1em;
  }

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

  .page-promotions-daily-rebate-details__btn-primary,
  .page-promotions-daily-rebate-details__btn-secondary,
  .page-promotions-daily-rebate-details a[class*="button"],
  .page-promotions-daily-rebate-details a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-daily-rebate-details__cta-buttons,
  .page-promotions-daily-rebate-details__button-group,
  .page-promotions-daily-rebate-details__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-promotions-daily-rebate-details__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions-daily-rebate-details__container {
    padding: 30px 15px;
  }

  /* Image responsiveness */
  .page-promotions-daily-rebate-details img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-daily-rebate-details__hero-image,
  .page-promotions-daily-rebate-details__step-image,
  .page-promotions-daily-rebate-details__benefit-image,
  .page-promotions-daily-rebate-details__game-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions-daily-rebate-details__section,
  .page-promotions-daily-rebate-details__card,
  .page-promotions-daily-rebate-details__container,
  .page-promotions-daily-rebate-details__game-card,
  .page-promotions-daily-rebate-details__step-card,
  .page-promotions-daily-rebate-details__benefit-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Video responsiveness (if any) */
  .page-promotions-daily-rebate-details video,
  .page-promotions-daily-rebate-details__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-daily-rebate-details__video-section,
  .page-promotions-daily-rebate-details__video-container,
  .page-promotions-daily-rebate-details__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}