/* style/promotions-daily-rebate.css */

/* Base styles for the page */
.page-promotions-daily-rebate {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-promotions-daily-rebate__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-daily-rebate__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-promotions-daily-rebate__light-bg {
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.page-promotions-daily-rebate__section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: bold;
  margin-bottom: 20px;
  color: #26A9E0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-promotions-daily-rebate__text-block {
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Hero Section */
.page-promotions-daily-rebate__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 0 60px; /* Small top padding, body handles header offset */
}

.page-promotions-daily-rebate__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px;
  object-fit: cover;
  display: block;
  margin-bottom: 40px;
}

.page-promotions-daily-rebate__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions-daily-rebate__main-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-rebate__hero-description {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-daily-rebate__btn-primary,
.page-promotions-daily-rebate__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-promotions-daily-rebate__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-promotions-daily-rebate__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-promotions-daily-rebate__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions-daily-rebate__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions-daily-rebate__btn-large {
  min-width: 200px;
}

/* What is Rebate Section */
.page-promotions-daily-rebate__what-is-rebate .page-promotions-daily-rebate__section-title,
.page-promotions-daily-rebate__what-is-rebate .page-promotions-daily-rebate__text-block {
  color: #f0f0f0;
}

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

.page-promotions-daily-rebate__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-daily-rebate__feature-item:hover {
  transform: translateY(-10px);
}

.page-promotions-daily-rebate__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-daily-rebate__feature-title {
  font-size: 22px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-daily-rebate__feature-description {
  font-size: 16px;
  color: #cccccc;
}

/* How to Participate Section */
.page-promotions-daily-rebate__how-to-participate .page-promotions-daily-rebate__section-title,
.page-promotions-daily-rebate__how-to-participate .page-promotions-daily-rebate__text-block {
  color: #ffffff;
}

.page-promotions-daily-rebate__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-promotions-daily-rebate__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  border-left: 5px solid #26A9E0;
}

.page-promotions-daily-rebate__step-title {
  font-size: 24px;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-rebate__step-description {
  font-size: 16px;
  color: #f0f0f0;
}

.page-promotions-daily-rebate__step-description a {
  color: #EA7C07;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-daily-rebate__step-description a:hover {
  text-decoration: underline;
}

/* Eligible Games Section */
.page-promotions-daily-rebate__eligible-games .page-promotions-daily-rebate__section-title,
.page-promotions-daily-rebate__eligible-games .page-promotions-daily-rebate__text-block {
  color: #f0f0f0;
}

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

.page-promotions-daily-rebate__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.page-promotions-daily-rebate__game-card:hover {
  transform: translateY(-10px);
}

.page-promotions-daily-rebate__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions-daily-rebate__game-title {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0 10px;
  color: #26A9E0;
}

.page-promotions-daily-rebate__game-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-promotions-daily-rebate__game-title a:hover {
  text-decoration: underline;
}

.page-promotions-daily-rebate__game-description {
  font-size: 15px;
  color: #cccccc;
  padding: 0 20px 20px;
}

/* Rebate Terms Section */
.page-promotions-daily-rebate__rebate-terms .page-promotions-daily-rebate__section-title,
.page-promotions-daily-rebate__rebate-terms .page-promotions-daily-rebate__text-block {
  color: #ffffff;
}

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

.page-promotions-daily-rebate__term-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-daily-rebate__term-title {
  font-size: 22px;
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-daily-rebate__term-list {
  list-style: disc;
  margin-left: 20px;
  color: #f0f0f0;
  font-size: 16px;
}

.page-promotions-daily-rebate__term-list li {
  margin-bottom: 10px;
}

.page-promotions-daily-rebate__btn-link {
  display: inline-block;
  margin-top: 20px;
  color: #EA7C07;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-daily-rebate__btn-link:hover {
  text-decoration: underline;
}

.page-promotions-daily-rebate__note {
  margin-top: 40px;
  font-size: 15px;
  color: #aaaaaa;
}

/* Why Choose Section */
.page-promotions-daily-rebate__why-choose .page-promotions-daily-rebate__section-title,
.page-promotions-daily-rebate__why-choose .page-promotions-daily-rebate__text-block {
  color: #f0f0f0;
}

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

.page-promotions-daily-rebate__advantage-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-daily-rebate__advantage-title {
  font-size: 22px;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-rebate__advantage-description {
  font-size: 16px;
  color: #cccccc;
}

/* FAQ Section */
.page-promotions-daily-rebate__faq-section .page-promotions-daily-rebate__section-title {
  color: #ffffff;
}

.page-promotions-daily-rebate__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-promotions-daily-rebate__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-daily-rebate__faq-item summary {
  list-style: none;
}

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

.page-promotions-daily-rebate__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-daily-rebate__faq-item[open] .page-promotions-daily-rebate__faq-question {
  border-bottom: 1px solid #26A9E0;
}

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

.page-promotions-daily-rebate__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #ffffff;
}

.page-promotions-daily-rebate__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-promotions-daily-rebate__container {
    padding: 0 15px;
  }

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

  .page-promotions-daily-rebate__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
    padding-bottom: 40px;
  }

  .page-promotions-daily-rebate__main-title {
    font-size: 30px;
  }

  .page-promotions-daily-rebate__hero-description {
    font-size: 16px;
  }

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

  .page-promotions-daily-rebate__btn-primary,
  .page-promotions-daily-rebate__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-promotions-daily-rebate__features-grid,
  .page-promotions-daily-rebate__game-categories,
  .page-promotions-daily-rebate__terms-grid,
  .page-promotions-daily-rebate__advantages-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-daily-rebate__section-title {
    font-size: 24px;
  }

  .page-promotions-daily-rebate__text-block {
    font-size: 15px;
  }

  .page-promotions-daily-rebate__step-title {
    font-size: 20px;
  }

  .page-promotions-daily-rebate__game-image {
    height: 180px;
  }

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

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

  /* Image responsiveness */
  .page-promotions-daily-rebate img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Containers for images, buttons, etc. */
  .page-promotions-daily-rebate__section,
  .page-promotions-daily-rebate__card,
  .page-promotions-daily-rebate__container,
  .page-promotions-daily-rebate__game-card,
  .page-promotions-daily-rebate__term-card,
  .page-promotions-daily-rebate__feature-item,
  .page-promotions-daily-rebate__advantage-item,
  .page-promotions-daily-rebate__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left and padding-right are handled by .page-promotions-daily-rebate__container */
    overflow: hidden !important;
  }

  /* Specific padding for hero content */
  .page-promotions-daily-rebate__hero-content {
    padding: 0 15px !important;
  }

  /* Ensure text blocks and lists inside containers also respect padding */
  .page-promotions-daily-rebate__text-block,
  .page-promotions-daily-rebate__steps-list,
  .page-promotions-daily-rebate__term-list,
  .page-promotions-daily-rebate__advantages-list {
    padding-left: 0;
    padding-right: 0;
  }
}