/* style/promotions-daily-rebate.css */
/* 页面完整样式代码 - 注意：所有选择器必须使用BEM命名规则（双下划线__连接） */
.page-promotions-daily-rebate {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Body background is #121212 (dark), so use light text */
  line-height: 1.6;
  background-color: #121212; /* Ensure consistency with shared body background */
}

.page-promotions-daily-rebate__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden;
}

.page-promotions-daily-rebate__hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.page-promotions-daily-rebate__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}

.page-promotions-daily-rebate__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-promotions-daily-rebate__hero-title {
  font-size: 3.2em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-daily-rebate__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

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

.page-promotions-daily-rebate__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions-daily-rebate__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #017439;
  border-radius: 2px;
}

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

.page-promotions-daily-rebate__paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-rebate__image-full {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
}