/* style/promotions-new-user-bonus.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Inherit body background from shared.css */
}

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

/* Section specific padding and background colors */
.page-promotions-new-user-bonus__hero-section,
.page-promotions-new-user-bonus__benefits-section,
.page-promotions-new-user-bonus__terms-section,
.page-promotions-new-user-bonus__why-choose-section,
.page-promotions-new-user-bonus__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-promotions-new-user-bonus__intro-section,
.page-promotions-new-user-bonus__how-to-claim-section,
.page-promotions-new-user-bonus__games-section,
.page-promotions-new-user-bonus__faq-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #f0f0f0;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  overflow: hidden; /* Prevent image overflow */
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

/* Add an overlay for darkening the image */
.page-promotions-new-user-bonus__hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 0;
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  border-radius: 10px;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* General Headings */
.page-promotions-new-user-bonus__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for headings */
  margin-bottom: 40px;
}

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

/* Highlight text */
.page-promotions-new-user-bonus__highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* Buttons */
.page-promotions-new-user-bonus__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons are responsive */
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background-color: #1f8ec4;
  border-color: #1f8ec4;
}

.page-promotions-new-user-bonus__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions-new-user-bonus__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}