.page-promotions-new-user-bonus {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensure this matches shared.css body background */
}

/* Fixed header offset */
.page-promotions-new-user-bonus__hero-section {
  padding-top: var(--header-offset, 120px);
  position: relative;
  overflow: hidden; /* For image overflow */
}

.page-promotions-new-user-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  background-color: #1A1A1A; /* Dark background for hero */
}

.page-promotions-new-user-bonus__hero-section .page-promotions-new-user-bonus__container {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.page-promotions-new-user-bonus__main-title {
  font-size: 48px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary,
.page-promotions-new-user-bonus__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box; /* Ensure padding is included in width */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow long words to break */
}

.page-promotions-new-user-bonus__btn-primary {
  background-color: #FFD700; /* Primary gold */
  color: #1A1A1A; /* Dark text for gold background */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-promotions-new-user-bonus__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for dark background */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-promotions-new-user-bonus__btn-link {
  background-color: #1A1A1A; /* Dark grey for link buttons */
  color: #FFD700; /* Gold text for dark background */
  border: 1px solid #FFD700;
  font-size: 16px;
  padding: 10px 20px;
  margin-top: 15px;
}

.page-promotions-new-user-bonus__btn-link:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2; /* Subtle background image */
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Section titles and intros */
.page-promotions-new-user-bonus__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for section titles */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__section-intro {
  font-size: 17px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Background color variants */
.page-promotions-new-user-bonus__dark-bg {
  background-color: #1A1A1A;
  color: #ffffff;
}

.page-promotions-new-user-bonus__light-bg {
  background-color: #0d0d0d; /* Slightly lighter dark background for contrast */
  color: #f0f0f0;
}

/* Cards */
.page-promotions-new-user-bonus__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2); /* Subtle gold border */
}

.page-promotions-new-user-bonus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus__card-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700; /* Gold for card titles */
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__card-text {
  font-size: 16px;
  color: #e0e0e0;
}

/* Benefits Section */
.page-promotions-new-user-bonus__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__benefit-icon,
.page-promotions-new-user-bonus__feature-icon {
  width: 100%;
  height: 200px; /* Enforce min-size, will be responsive */
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px;
  display: block; /* Ensure it respects max-width: 100% */
}

/* How to Claim Section */
.page-promotions-new-user-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__step-card {
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-promotions-new-user-bonus__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.5);
  border: 2px solid #1A1A1A;
}

/* Terms Section */
.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__term-item {
  background-color: rgba(255, 255, 255, 0.05); /* Lighter card on dark background */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700; /* Gold accent */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__term-heading {
  font-size: 20px;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__term-text {
  font-size: 16px;
  color: #e0e0e0;
}

/* Why Choose Section */
.page-promotions-new-user-bonus__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__feature-card {
  height: 100%; /* Ensure cards are same height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-promotions-new-user-bonus__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

/* Global image styles */
.page-promotions-new-user-bonus img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default object-fit for content images */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__main-title {
    font-size: 40px;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 40px;
  }

  .page-promotions-new-user-bonus__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-promotions-new-user-bonus__description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary,
  .page-promotions-new-user-bonus__btn-link {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-promotions-new-user-bonus__section-intro {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonus__benefits-grid,
  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-bonus__card {
    padding: 20px;
  }

  .page-promotions-new-user-bonus__card-title {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .page-promotions-new-user-bonus__card-text {
    font-size: 15px;
  }

  .page-promotions-new-user-bonus__term-item {
    padding: 20px;
  }

  .page-promotions-new-user-bonus__term-heading {
    font-size: 18px;
  }

  .page-promotions-new-user-bonus__term-text {
    font-size: 15px;
  }

  /* Image responsive rules */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-new-user-bonus__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

/* Ensure content images are not small icons */
.page-promotions-new-user-bonus__benefit-icon,
.page-promotions-new-user-bonus__feature-icon {
  min-width: 200px;
  min-height: 200px;
  width: 100%; /* Take full width of its container */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Cover the area, cropping if necessary */
}

/* No CSS filter for images */
.page-promotions-new-user-bonus img {
  filter: none !important;
}