.page-promotions-new-user-bonus-details {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  background-color: #f8f8f8;
  line-height: 1.6;
}

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

.page-promotions-new-user-bonus-details__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-new-user-bonus-details__section-title {
  font-size: 36px;
  color: #003366;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-promotions-new-user-bonus-details__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); /* Fixed header offset */
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #ffffff;
  overflow: hidden;
}

.page-promotions-new-user-bonus-details__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-promotions-new-user-bonus-details__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus-details__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-new-user-bonus-details__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

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

.page-promotions-new-user-bonus-details__intro-text {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus-details__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFCC00; /* Gold button */
  color: #003366; /* Dark blue text */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus-details__cta-button:hover {
  background: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus-details__introduction .page-promotions-new-user-bonus-details__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
}

.page-promotions-new-user-bonus-details__introduction .page-promotions-new-user-bonus-details__text-block {
  flex: 1;
  min-width: 300px;
}

.page-promotions-new-user-bonus-details__introduction .page-promotions-new-user-bonus-details__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  color: #444;
}

.page-promotions-new-user-bonus-details__introduction .page-promotions-new-user-bonus-details__image-block {
  flex: 1;
  min-width: 300px;
}

.page-promotions-new-user-bonus-details__introduction .page-promotions-new-user-bonus-details__image-block img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus-details__quick-access {
  background-color: #ffffff;
  padding: 80px 0;
}

.page-promotions-new-user-bonus-details__link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus-details__quick-link-card {
  display: block;
  background: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  text-decoration: none;
  color: #333333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-promotions-new-user-bonus-details__quick-link-card:hover {
  background: #e6e6e6;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus-details__quick-link-card h3 {
  font-size: 22px;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus-details__quick-link-card p {
  font-size: 15px;
  color: #555555;
  margin-bottom: 0;
}

.page-promotions-new-user-bonus-details__core-games {
  background-color: #f8f8f8;
}

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

.page-promotions-new-user-bonus-details__game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus-details__game-card:hover {
  transform: translateY(-8px);
}

.page-promotions-new-user-bonus-details__game-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promotions-new-user-bonus-details__game-card .page-promotions-new-user-bonus-details__game-title {
  font-size: 24px;
  color: #003366;
  margin: 20px 20px 10px 20px;
}

.page-promotions-new-user-bonus-details__game-card .page-promotions-new-user-bonus-details__game-title a {
  text-decoration: none;
  color: #003366;
  transition: color 0.3s ease;
}

.page-promotions-new-user-bonus-details__game-card .page-promotions-new-user-bonus-details__game-title a:hover {
  color: #FFCC00;
}

.page-promotions-new-user-bonus-details__game-card p {
  font-size: 15px;
  color: #555555;
  padding: 0 20px 20px 20px;
}

.page-promotions-new-user-bonus-details__promotions {
  background-color: #f0f0f0;
}

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

.page-promotions-new-user-bonus-details__promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus-details__promo-card:hover {
  transform: translateY(-8px);
}

.page-promotions-new-user-bonus-details__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-promotions-new-user-bonus-details__promo-card .page-promotions-new-user-bonus-details__promo-title {
  font-size: 22px;
  color: #003366;
  margin: 20px 20px 10px 20px;
}

.page-promotions-new-user-bonus-details__promo-card .page-promotions-new-user-bonus-details__promo-title a {
  text-decoration: none;
  color: #003366;
  transition: color 0.3s ease;
}

.page-promotions-new-user-bonus-details__promo-card .page-promotions-new-user-bonus-details__promo-title a:hover {
  color: #FFCC00;
}

.page-promotions-new-user-bonus-details__promo-card p {
  font-size: 15px;
  color: #555555;
  padding: 0 20px 20px 20px;
}

.page-promotions-new-user-bonus-details__security-support {
  background: #003366; /* Dark blue background */
  color: #ffffff; /* White text for dark background */
  padding: 80px 0;
}

.page-promotions-new-user-bonus-details__security-support .page-promotions-new-user-bonus-details__section-title {
  color: #FFCC00; /* Gold title for dark background */
}

.page-promotions-new-user-bonus-details__security-support .page-promotions-new-user-bonus-details__section-description {
  color: #f0f0f0;
}

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