:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --bg-card: #11271B;
  --bg-body-custom: #08160F; /* Custom background for this page, assumed to be var(--bg-color) */
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
}

.page-promotions-daily-rebate-deposit-bonus {
  background-color: var(--bg-body-custom);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions-daily-rebate-deposit-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 80px; /* body handles top offset, this is decorative */
  overflow: hidden;
  color: var(--text-main);
}

.page-promotions-daily-rebate-deposit-bonus__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-promotions-daily-rebate-deposit-bonus__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-promotions-daily-rebate-deposit-bonus__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-promotions-daily-rebate-deposit-bonus__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-daily-rebate-deposit-bonus__hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-promotions-daily-rebate-deposit-bonus__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-daily-rebate-deposit-bonus__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions-daily-rebate-deposit-bonus__btn--primary {
  background: var(--color-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-promotions-daily-rebate-deposit-bonus__btn--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

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

.page-promotions-daily-rebate-deposit-bonus__btn--secondary:hover {
  background: rgba(34, 199, 104, 0.1);
  color: var(--text-main);
}

.page-promotions-daily-rebate-deposit-bonus__btn--large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

.page-promotions-daily-rebate-deposit-bonus__section {
  padding: 60px 20px;
  background-color: var(--bg-body-custom);
}

.page-promotions-daily-rebate-deposit-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions-daily-rebate-deposit-bonus__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-promotions-daily-rebate-deposit-bonus__sub-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-secondary);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-daily-rebate-deposit-bonus__text-block {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-promotions-daily-rebate-deposit-bonus__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

@media (min-width: 769px) {
  .page-promotions-daily-rebate-deposit-bonus__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-promotions-daily-rebate-deposit-bonus__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl; /* For image-text swap */
  }
  .page-promotions-daily-rebate-deposit-bonus__content-grid--reverse > div {
    direction: ltr; /* Reset text direction */
  }
}

.page-promotions-daily-rebate-deposit-bonus__image-wrapper {
  text-align: center;
}

.page-promotions-daily-rebate-deposit-bonus__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it respects max-width */
  margin: 0 auto;
}

.page-promotions-daily-rebate-deposit-bonus__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-promotions-daily-rebate-deposit-bonus__list-item {
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.page-promotions-daily-rebate-deposit-bonus__list-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: var(--color-glow);
  font-size: 1.2em;
  line-height: 1;
}

.page-promotions-daily-rebate-deposit-bonus__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

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

.page-promotions-daily-rebate-deposit-bonus__step-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-promotions-daily-rebate-deposit-bonus__step-card:hover {
  transform: translateY(-5px);
}

.page-promotions-daily-rebate-deposit-bonus__step-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background-color: var(--color-deep-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 5px var(--color-divider);
}

.page-promotions-daily-rebate-deposit-bonus__step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--color-gold);
  color: #000000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-promotions-daily-rebate-deposit-bonus__step-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(1.5); /* Enhance visibility on dark background */
  display: block;
}

.page-promotions-daily-rebate-deposit-bonus__step-title {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-promotions-daily-rebate-deposit-bonus__step-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.page-promotions-daily-rebate-deposit-bonus__faq-list {
  margin-top: 30px;
}

.page-promotions-daily-rebate-deposit-bonus__faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-daily-rebate-deposit-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--color-deep-green);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
}

.page-promotions-daily-rebate-deposit-bonus__faq-question:hover {
  background-color: var(--color-primary);
}

.page-promotions-daily-rebate-deposit-bonus__faq-qtext {
  font-weight: bold;
}

.page-promotions-daily-rebate-deposit-bonus__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--color-gold);
}

.page-promotions-daily-rebate-deposit-bonus__faq-item[open] .page-promotions-daily-rebate-deposit-bonus__faq-question {
  border-bottom: 1px solid var(--color-secondary);
}

.page-promotions-daily-rebate-deposit-bonus__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: var(--text-secondary);
  background-color: var(--bg-card);
}

.page-promotions-daily-rebate-deposit-bonus__faq-answer p {
  margin-bottom: 0;
}

/* Details element specific styling */
.page-promotions-daily-rebate-deposit-bonus__faq-item summary {
  list-style: none; /* Hide default marker */
}
.page-promotions-daily-rebate-deposit-bonus__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions-daily-rebate-deposit-bonus__hero-section {
    padding: 10px 15px 50px;
  }
  .page-promotions-daily-rebate-deposit-bonus__hero-content {
    padding: 20px;
  }
  .page-promotions-daily-rebate-deposit-bonus__hero-title {
    font-size: 2rem;
  }
  .page-promotions-daily-rebate-deposit-bonus__hero-description {
    font-size: 1rem;
  }
  .page-promotions-daily-rebate-deposit-bonus__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-daily-rebate-deposit-bonus__btn {
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-daily-rebate-deposit-bonus__section {
    padding: 40px 15px;
  }
  .page-promotions-daily-rebate-deposit-bonus__container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-promotions-daily-rebate-deposit-bonus__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-promotions-daily-rebate-deposit-bonus__sub-title {
    font-size: 1.3rem;
  }
  .page-promotions-daily-rebate-deposit-bonus__text-block, 
  .page-promotions-daily-rebate-deposit-bonus__list-item,
  .page-promotions-daily-rebate-deposit-bonus__faq-answer p {
    font-size: 0.95rem;
  }
  .page-promotions-daily-rebate-deposit-bonus__image {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    display: block !important;
  }
  .page-promotions-daily-rebate-deposit-bonus__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-promotions-daily-rebate-deposit-bonus__step-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-rebate-deposit-bonus__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-promotions-daily-rebate-deposit-bonus__faq-toggle {
    font-size: 1.2rem;
  }
}

/* Global image responsiveness for content area */
.page-promotions-daily-rebate-deposit-bonus img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-promotions-daily-rebate-deposit-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions-daily-rebate-deposit-bonus__section,
  .page-promotions-daily-rebate-deposit-bonus__card,
  .page-promotions-daily-rebate-deposit-bonus__container,
  .page-promotions-daily-rebate-deposit-bonus__content-grid,
  .page-promotions-daily-rebate-deposit-bonus__step-card,
  .page-promotions-daily-rebate-deposit-bonus__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-daily-rebate-deposit-bonus__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }
  .page-promotions-daily-rebate-deposit-bonus__cta-group {
    padding-left: 0;
    padding-right: 0;
  }
}