.page-promotions-new-player-welcome {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css */
}

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

.page-promotions-new-player-welcome__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #017439; /* Brand primary for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-promotions-new-player-welcome__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.page-promotions-new-player-welcome__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-promotions-new-player-welcome__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-player-welcome__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-player-welcome__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promotions-new-player-welcome__btn-register,
.page-promotions-new-player-welcome__btn-login {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-player-welcome__btn-register {
  background-color: #C30808; /* Custom Register color */
  color: #ffffff; /* Force white text for WCAG AA contrast on #C30808 (original #FFFF00 failed contrast) */
}

.page-promotions-new-player-welcome__btn-register:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-promotions-new-player-welcome__btn-login {
  background-color: #C30808; /* Custom Login color */
  color: #ffffff; /* Force white text for WCAG AA contrast on #C30808 (original #FFFF00 failed contrast) */
}

.page-promotions-new-player-welcome__btn-login:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-promotions-new-player-welcome__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-new-player-welcome__section-title--white {
  color: #ffffff;
}

.page-promotions-new-player-welcome__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-promotions-new-player-welcome__text-block--white {
  color: #ffffff;
}

.page-promotions-new-player-welcome__introduction-section {
  background-color: #ffffff; /* Light background for contrast */
  color: #333333;
  padding: 80px 0;
}

.page-promotions-new-player-welcome__how-to-claim-section {
  background-color: #017439; /* Brand primary dark background */
  color: #ffffff;
  padding: 80px 0;
}

.page-promotions-new-player-welcome__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-promotions-new-player-welcome__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-player-welcome__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #017439;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  border: 2px solid #017439;
}

.page-promotions-new-player-welcome__step-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-promotions-new-player-welcome__step-description {
  color: #e0e0e0;
}

.page-promotions-new-player-welcome__cta-buttons--center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.page-promotions-new-player-welcome__btn-primary {
  background-color: #017439;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #ffffff;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-player-welcome__btn-primary:hover {
  background-color: #005f2e;
  transform: translateY(-2px);
}

.page-promotions-new-player-welcome__offers-section {
  background-color: #ffffff;
  color: #333333;
  padding: 80px 0;
}

.page-promotions-new-player-welcome__offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-promotions-new-player-welcome__offer-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
  text-align: center;
}

.page-promotions-new-player-welcome__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #017439;
}

.page-promotions-new-player-welcome__card-description {
  color: #555555;
}

.page-promotions-new-player-welcome__why-choose-section {
  background-color: #017439;
  color: #ffffff;
  padding: 80px 0;
}

.page-promotions-new-player-welcome__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-promotions-new-player-welcome__advantage-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  text-align: center;
}

.page-promotions-new-player-welcome__advantage-card .page-promotions-new-player-welcome__card-title {
  color: #ffffff;
}

.page-promotions-new-player-welcome__advantage-card .page-promotions-new-player-welcome__card-description {
  color: #e0e0e0;
}

.page-promotions-new-player-welcome__faq-section {
  background-color: #ffffff;
  color: #333333;
  padding: 80px 0;
}

.page-promotions-new-player-welcome__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-new-player-welcome__faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #f8f8f8;
}

.page-promotions-new-player-welcome__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #ffffff;
  color: #333333;
  transition: background-color 0.3s ease;
}

.page-promotions-new-player-welcome__faq-question:hover {
  background-color: #f0f0f0;
}

.page-promotions-new-player-welcome__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #017439;
}

.page-promotions-new-player-welcome__faq-item.active .page-promotions-new-player-welcome__faq-toggle {
  transform: rotate(45deg); /* Plus to X */
}

.page-promotions-new-player-welcome__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-promotions-new-player-welcome__faq-item.active .page-promotions-new-player-welcome__faq-answer {
  max-height: 1000px !important; /* Sufficiently large for content */
  padding: 20px;
}

.page-promotions-new-player-welcome__video-section {
  background-color: #017439;
  color: #ffffff;
  padding: 80px 0;
}

.page-promotions-new-player-welcome__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 40px;
  background-color: #000;
  border-radius: 10px;
}

.page-promotions-new-player-welcome__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.page-promotions-new-player-welcome__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #017439;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-player-welcome__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-promotions-new-player-welcome__cta-section {
  background-color: #017439;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-promotions-new-player-welcome__cta-section::before {
  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-player-welcome__cta-section .page-promotions-new-player-welcome__container {
  position: relative;
  z-index: 1;
}

.page-promotions-new-player-welcome__image-content {
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-player-welcome__image-full-width {
  width: 100%;
}

/* General image styling to prevent small icons */
.page-promotions-new-player-welcome img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-player-welcome__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-new-player-welcome__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-player-welcome {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-new-player-welcome__hero-section {
    min-height: 500px;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is below fixed header on mobile */
  }

  .page-promotions-new-player-welcome__hero-title {
    font-size: 2.2em;
  }

  .page-promotions-new-player-welcome__hero-description {
    font-size: 1em;
  }

  .page-promotions-new-player-welcome__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-new-player-welcome__btn-register,
  .page-promotions-new-player-welcome__btn-login,
  .page-promotions-new-player-welcome__btn-primary,
  .page-promotions-new-player-welcome__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-new-player-welcome__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    padding: 0 15px;
  }

  .page-promotions-new-player-welcome__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions-new-player-welcome__text-block {
    font-size: 1em;
  }

  .page-promotions-new-player-welcome__introduction-section,
  .page-promotions-new-player-welcome__how-to-claim-section,
  .page-promotions-new-player-welcome__offers-section,
  .page-promotions-new-player-welcome__why-choose-section,
  .page-promotions-new-player-welcome__faq-section,
  .page-promotions-new-player-welcome__video-section,
  .page-promotions-new-player-welcome__cta-section {
    padding: 60px 0;
  }

  .page-promotions-new-player-welcome__container {
    padding: 0 15px;
  }

  .page-promotions-new-player-welcome__steps-grid,
  .page-promotions-new-player-welcome__offers-grid,
  .page-promotions-new-player-welcome__advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-player-welcome__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-promotions-new-player-welcome__faq-answer {
    padding: 0 15px;
  }

  .page-promotions-new-player-welcome__faq-item.active .page-promotions-new-player-welcome__faq-answer {
    padding: 15px;
  }

  .page-promotions-new-player-welcome img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-new-player-welcome__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions-new-player-welcome__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all content containers are responsive */
  .page-promotions-new-player-welcome__section,
  .page-promotions-new-player-welcome__card,
  .page-promotions-new-player-welcome__container,
  .page-promotions-new-player-welcome__video-section,
  .page-promotions-new-player-welcome__video-container,
  .page-promotions-new-player-welcome__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}