.page-promotions-new-user-bonus {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #ffffff; /* Assuming shared.css sets body to white or light color */
}

/* General container for content sections */
.page-promotions-new-user-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__section {
  padding: 60px 0;
  border-bottom: 1px solid #eeeeee;
}

.page-promotions-new-user-bonus__section:last-of-type {
  border-bottom: none;
}

.page-promotions-new-user-bonus__heading {
  font-size: 36px;
  color: #26A9E0; /* Brand color for headings */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-promotions-new-user-bonus__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 not hidden by fixed header */
  background-color: #f0f8ff; /* Light background for hero */
  overflow: hidden; /* Prevent image overflow */
}

.page-promotions-new-user-bonus__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-promotions-new-user-bonus__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.1);
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent background for text on image */
  padding: 30px 20px;
  border-radius: 12px;
  transform: translateY(-50px); /* Overlap with image slightly */
  margin-bottom: -50px; /* Adjust for overlap */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__main-title {
  font-size: 48px;
  color: #26A9E0; /* Brand color */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.page-promotions-new-user-bonus__intro-text {
  font-size: 20px;
  color: #555555;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #26A9E0; /* Primary brand color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(38, 169, 224, 0.4);
}

.page-promotions-new-user-bonus__cta-button:hover {
  background: #1e87c0; /* Darker shade for hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(38, 169, 224, 0.6);
}

/* Why Choose Section */
.page-promotions-new-user-bonus__why-choose {
  background-color: #f9f9f9;
}

.page-promotions-new-user-bonus__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-new-user-bonus__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-user-bonus__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__feature-item img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions-new-user-bonus__feature-title {
  font-size: 24px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions-new-user-bonus__feature-item p {
  font-size: 16px;
  color: #555555;
  text-align: left;
}

/* Bonus Details Section */
.page-promotions-new-user-bonus__bonus-details {
  background-color: #ffffff;
}

.page-promotions-new-user-bonus__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-new-user-bonus__card {
  background: #fdfdfd;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-promotions-new-user-bonus__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions-new-user-bonus__card-title {
  font-size: 26px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions-new-user-bonus__card p {
  font-size: 16px;
  color: #555555;
  text-align: left;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__card p strong {
  color: #333333;
}

.page-promotions-new-user-bonus__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

.page-promotions-new-user-bonus__btn-secondary {
  display: inline-block;
  padding: 18px 45px;
  background: #ffffff;
  color: #26A9E0;
  text-decoration: none;
  border: 2px solid #26A9E0;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(38, 169, 224, 0.4);
}

/* How to Claim Section */
.page-promotions-new-user-bonus__how-to-claim {
  background-color: #f0f8ff; /* Light blue background */
}

.page-promotions-new-user-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-new-user-bonus__step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-new-user-bonus__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #26A9E0;
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(38, 169, 224, 0.4);
}

.page-promotions-new-user-bonus__step-title {
  font-size: 24px;
  color: #333333;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions-new-user-bonus__step-item p {
  font-size: 16px;
  color: #555555;
  text-align: left;
  flex-grow: 1; /* Allow paragraph to grow */
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: #26A9E0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: auto; /* Push button to bottom */
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(38, 169, 224, 0.3);
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background: #1e87c0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(38, 169, 224, 0.5);
}

.page-promotions-new-user-bonus__guide-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 50px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Terms & Conditions Section */
.page-promotions-new-user-bonus__terms {
  background-color: #ffffff;
}

.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__terms-list li {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  font-size: 17px;
  color: #444444;
  line-height: 1.7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user-bonus__terms-list li strong {
  color: #26A9E0;
}

.page-promotions-new-user-bonus__terms-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 50px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq {
  background-color: #f0f8ff; /* Light blue background */
}

.page-promotions-new-user-bonus__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ容器样式 */
.page-promotions-new-user-bonus__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}