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

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

/* Container for general content, to center and limit width */
.page-promotions-new-user-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  min-height: 500px; /* Minimum height for hero */
}

.page-promotions-new-user-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  /* Ensure no CSS filter is applied */
  filter: none;
}

.page-promotions-new-user-bonus__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: -1;
}

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

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

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

/* General Section Styling */
.page-promotions-new-user-bonus__content-section {
  padding: 80px 0;
}

.page-promotions-new-user-bonus__section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for titles */
}

.page-promotions-new-user-bonus__section-intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-promotions-new-user-bonus__subtitle {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #26A9E0;
}

/* Background Color Handling */
.page-promotions-new-user-bonus__dark-bg {
  background-color: #1a1a1a; /* Inherits from body, ensuring dark background */
  color: #ffffff; /* Light text */
}

.page-promotions-new-user-bonus__light-bg {
  background-color: #ffffff; /* Explicitly light background */
  color: #333333; /* Dark text for contrast */
}

/* Text contrast fix for light background sections */
.page-promotions-new-user-bonus__text-contrast-fix p,
.page-promotions-new-user-bonus__text-contrast-fix li,
.page-promotions-new-user-bonus__text-contrast-fix h3,
.page-promotions-new-user-bonus__text-contrast-fix h2,
.page-promotions-new-user-bonus__text-contrast-fix span {
  color: #333333; /* Ensure dark text on light background */
}

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

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1rem;
  text-align: center;
  box-sizing: border-box; /* Ensure padding doesn't push width */
}

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

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

.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;
}

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

.page-promotions-new-user-bonus__feature-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark background */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter */
  object-fit: cover;
  width: 100%;
  min-height: 200px; /* Minimum image height */
}

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

.page-promotions-new-user-bonus__feature-text {
  font-size: 1rem;
  color: #f0f0f0;
  flex-grow: 1;
}

/* Video Section */
.page-promotions-new-user-bonus__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 40px;
  background-color: #000;
}

.page-promotions-new-user-bonus__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-promotions-new-user-bonus__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none; /* Ensure no CSS filter */
}

.page-promotions-new-user-bonus__video-caption {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
  font-size: 0.95rem;
  color: #f0f0f0;
}

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

.page-promotions-new-user-bonus__offer-card {
  background-color: #f8f8f8; /* Light background for cards in light section */
  color: #333333; /* Dark text for contrast */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__offer-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter */
  object-fit: cover;
  width: 100%;
  min-height: 200px; /* Minimum image height */
}

.page-promotions-new-user-bonus__offer-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__offer-text {
  font-size: 1rem;
  color: #333333;
  flex-grow: 1;
}

/* Guide List */
.page-promotions-new-user-bonus__guide-list {
  list-style-type: decimal;
  padding-left: 25px;
  max-width: 800px;
  margin: 40px auto;
  font-size: 1.1rem;
  color: #333333;
}

.page-promotions-new-user-bonus__guide-list li {
  margin-bottom: 15px;
  color: #333333;
}

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

/* Registration Steps */
.page-promotions-new-user-bonus__registration-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}