/* General styles for the daily rebate page */
.page-promotions-daily-rebate {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background #f4f4f4 */
  background-color: #f4f4f4;
}

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

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

.page-promotions-daily-rebate__section-title {
  font-size: 36px;
  color: #1A202C; /* Dark secondary color for titles */
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-daily-rebate__text-block {
  max-width: 900px;
  margin: 0 auto 20px auto;
  font-size: 17px;
  line-height: 1.8;
  color: #333333;
}

/* Hero Section */
.page-promotions-daily-rebate__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background: linear-gradient(135deg, #FFD700, #1A202C); /* Brand colors for hero background */
  color: #ffffff;
}

.page-promotions-daily-rebate__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions-daily-rebate__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 900px; /* Limit image width to fit better with content */
}

.page-promotions-daily-rebate__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions-daily-rebate__hero-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-rebate__hero-description {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-promotions-daily-rebate__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

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

.page-promotions-daily-rebate__btn-primary {
  background: #FFD700;
  color: #1A202C; /* Dark text on golden button for contrast */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-daily-rebate__btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

.page-promotions-daily-rebate__btn-secondary:hover {
  background: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* What is Rebate Section */
.page-promotions-daily-rebate__what-is-rebate {
  background-color: #ffffff;
}

/* Benefits Section */
.page-promotions-daily-rebate__benefits {
  background-color: #1A202C; /* Dark auxiliary color */
  color: #ffffff;
}

.page-promotions-daily-rebate__benefits .page-promotions-daily-rebate__section-title {
  color: #FFD700; /* Golden title on dark background */
}

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

.page-promotions-daily-rebate__card {
  background-color: #2a3340; /* Slightly lighter dark for card background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-promotions-daily-rebate__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate__card-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-daily-rebate__card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* How to Participate Section */
.page-promotions-daily-rebate__how-to-participate {
  background-color: #f9f9f9;
}

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

.page-promotions-daily-rebate__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page-promotions-daily-rebate__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #1A202C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-promotions-daily-rebate__step-title {
  font-size: 22px;
  color: #1A202C;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-rebate__step-description {
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
}

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

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

.page-promotions-daily-rebate__image-container {
  margin-top: 50px;
  text-align: center;
}

.page-promotions-daily-rebate__image-container img {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-rebate__cta-bottom {
  margin-top: 50px;
}

/* Eligible Games Section */
.page-promotions-daily-rebate__eligible-games {
  background-color: #ffffff;
}

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

.page-promotions-daily-rebate__game-card {
  background-color: #fefefe;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #FFD700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-rebate__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-rebate__game-title {
  font-size: 22px;
  color: #1A202C;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-rebate__game-description {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-promotions-daily-rebate__game-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700;
  color: #1A202C;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions-daily-rebate__game-link:hover {
  background-color: #e6c200;
}

/* Terms and Conditions Section */
.page-promotions-daily-rebate__terms-conditions {
  background-color: #1A202C; /* Dark section */
  color: #ffffff;
  text-align: left;
}

.page-promotions-daily-rebate__terms-conditions .page-promotions-daily-rebate__section-title {
  color: #FFD700;
  text-align: center;
}

.page-promotions-daily-rebate__list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 20px auto;
}

.page-promotions-daily-rebate__list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-promotions-daily-rebate__list-icon {
  font-size: 20px;
  color: #FFD700;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-promotions-daily-rebate__disclaimer {
  max-width: 900px;
  margin: 30px auto 0 auto;
  font-size: 15px;
  color: #b0b0b0;
}

.page-promotions-daily-rebate__disclaimer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

/* FAQ Section */
.page-promotions-daily-rebate__faq {
  background-color: #fefefe;
}

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

/* FAQ容器样式 */
.page-promotions-daily-rebate__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

/* FAQ默认状态 - 答案隐藏 */
.page-promotions-daily-rebate__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}