.page-promotions-new-player {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color from custom scheme */
  background-color: var(--background, #08160F); /* Default background color from custom scheme */
  padding-bottom: 60px; /* Ensure space above footer */
}

.page-promotions-new-player__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 20px 40px; /* Small top padding, more bottom padding */
  box-sizing: border-box;
}

.page-promotions-new-player__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

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

.page-promotions-new-player__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-promotions-new-player__hero-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  font-weight: 700;
  color: var(--gold, #F2C14E);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-player__hero-description {
  font-size: 1.1em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-new-player__btn-primary,
.page-promotions-new-player__btn-secondary,
.page-promotions-new-player__btn-link,
.page-promotions-new-player a[class*="button"],
.page-promotions-new-player a[class*="btn"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-player__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for primary button */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-player__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-promotions-new-player__btn-secondary {
  background: var(--card-bg, #11271B);
  color: var(--main-color, #11A84E);
  border: 2px solid var(--main-color, #11A84E);
}

.page-promotions-new-player__btn-secondary:hover {
  background: var(--main-color, #11A84E);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.page-promotions-new-player__btn-link {
  color: var(--glow, #57E38D);
  text-decoration: underline;
  background: transparent;
  padding: 0;
  border: none;
  font-weight: 600;
}

.page-promotions-new-player__btn-link:hover {
  color: var(--gold, #F2C14E);
  text-decoration: none;
}

.page-promotions-new-player__section-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.page-promotions-new-player__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: var(--gold, #F2C14E);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions-new-player__section-description {
  font-size: 1.1em;
  color: var(--text-secondary, #A7D9B8);
}

.page-promotions-new-player__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  box-sizing: border-box;
}

.page-promotions-new-player__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions-new-player__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: #000;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  width: 100%; /* Ensure width is 100% for desktop */
  max-width: 100%; /* Ensure max-width is 100% for desktop */
}

.page-promotions-new-player__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-promotions-new-player__video-overlay-link {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  cursor: pointer;
}

.page-promotions-new-player__benefits-section {
  padding: 60px 20px;
  background-color: var(--background, #08160F);
}

.page-promotions-new-player__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions-new-player__benefit-card {
  background-color: var(--card-bg, #11271B);
  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 var(--border, #2E7A4E);
}

.page-promotions-new-player__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-player__benefit-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-new-player__benefit-title {
  font-size: 1.5em;
  color: var(--gold, #F2C14E);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-new-player__benefit-text {
  color: var(--text-secondary, #A7D9B8);
}

.page-promotions-new-player__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-promotions-new-player__promotions-list-section {
  padding: 60px 20px;
  background-color: var(--background, #08160F);
}

.page-promotions-new-player__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions-new-player__promotion-card {
  background-color: var(--card-bg, #11271B);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border, #2E7A4E);
}

.page-promotions-new-player__promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-player__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions-new-player__promotion-content {
  padding: 25px;
}

.page-promotions-new-player__promotion-title {
  font-size: 1.4em;
  color: var(--gold, #F2C14E);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-new-player__promotion-description {
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
}

.page-promotions-new-player__how-to-claim-section {
  padding: 60px 20px;
  background-color: var(--background, #08160F);
}

.page-promotions-new-player__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions-new-player__step-card {
  background-color: var(--card-bg, #11271B);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border, #2E7A4E);
}

.page-promotions-new-player__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-player__step-title {
  font-size: 1.5em;
  color: var(--gold, #F2C14E);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-new-player__step-text {
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
}

.page-promotions-new-player__featured-games-section {
  padding: 60px 20px;
  background-color: var(--background, #08160F);
}

.page-promotions-new-player__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions-new-player__game-card {
  background-color: var(--card-bg, #11271B);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border, #2E7A4E);
}

.page-promotions-new-player__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-player__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions-new-player__game-content {
  padding: 25px;
}

.page-promotions-new-player__game-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-new-player__game-title a {
  color: var(--gold, #F2C14E);
  text-decoration: none;
}

.page-promotions-new-player__game-title a:hover {
  text-decoration: underline;
}

.page-promotions-new-player__game-description {
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
}

.page-promotions-new-player__safety-section {
  padding: 60px 20px;
  background-color: var(--background, #08160F);
}

.page-promotions-new-player__safety-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.page-promotions-new-player__safety-text {
  flex: 1;
  min-width: 300px;
  color: var(--text-secondary, #A7D9B8);
}

.page-promotions-new-player__safety-text p {
  margin-bottom: 15px;
}

.page-promotions-new-player__safety-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-promotions-new-player__safety-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-promotions-new-player__faq-section {
  padding: 60px 20px;
  background-color: var(--background, #08160F);
}

.page-promotions-new-player__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-new-player__faq-item {
  background-color: var(--card-bg, #11271B);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--border, #2E7A4E);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-player__faq-item summary {
  list-style: none; /* Remove default marker */
}

.page-promotions-new-player__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit */
}

.page-promotions-new-player__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--text-main, #F2FFF6);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-promotions-new-player__faq-question:hover {
  background-color: var(--deep-green, #0A4B2C);
}

.page-promotions-new-player__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions-new-player__faq-item[open] .page-promotions-new-player__faq-toggle {
  transform: rotate(45deg); /* Plus to X effect */
}

.page-promotions-new-player__faq-answer {
  padding: 0 25px 20px;
  color: var(--text-secondary, #A7D9B8);
  font-size: 1em;
}

.page-promotions-new-player__faq-answer p {
  margin-bottom: 10px;
}

.page-promotions-new-player__cta-section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--card-bg, #11271B);
  border-top: 1px solid var(--divider, #1E3A2A);
}

.page-promotions-new-player__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-new-player__cta-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: var(--gold, #F2C14E);
  margin-bottom: 20px;
  font-weight: 700;
}

.page-promotions-new-player__cta-description {
  font-size: 1.1em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-player__hero-content {
    padding: 0 15px;
  }
  .page-promotions-new-player__benefits-grid,
  .page-promotions-new-player__promotions-grid,
  .page-promotions-new-player__steps-grid,
  .page-promotions-new-player__games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions-new-player__safety-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-player__hero-image-wrapper {
    max-height: 400px;
  }
  .page-promotions-new-player__hero-title {
    font-size: clamp(1.8em, 6vw, 2.8em);
  }
  .page-promotions-new-player__hero-description {
    font-size: 1em;
  }
  .page-promotions-new-player__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-new-player__btn-primary,
  .page-promotions-new-player__btn-secondary,
  .page-promotions-new-player__btn-link,
  .page-promotions-new-player a[class*="button"],
  .page-promotions-new-player a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-player__video-section,
  .page-promotions-new-player__benefits-section,
  .page-promotions-new-player__promotions-list-section,
  .page-promotions-new-player__how-to-claim-section,
  .page-promotions-new-player__featured-games-section,
  .page-promotions-new-player__safety-section,
  .page-promotions-new-player__faq-section,
  .page-promotions-new-player__cta-section {
    padding: 40px 15px; /* Adjust padding for mobile */
  }
  .page-promotions-new-player__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
  .page-promotions-new-player__video-container,
  .page-promotions-new-player__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  .page-promotions-new-player video,
  .page-promotions-new-player__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-new-player img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions-new-player__section,
  .page-promotions-new-player__card,
  .page-promotions-new-player__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-player__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-new-player__faq-answer {
    padding: 0 20px 15px;
  }
  .page-promotions-new-player__safety-image-wrapper {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-player__hero-title {
    font-size: clamp(1.6em, 8vw, 2.2em);
  }
  .page-promotions-new-player__section-title,
  .page-promotions-new-player__cta-title {
    font-size: clamp(1.6em, 7vw, 2em);
  }
  .page-promotions-new-player__benefit-title,
  .page-promotions-new-player__promotion-title,
  .page-promotions-new-player__step-title,
  .page-promotions-new-player__game-title {
    font-size: 1.3em;
  }
  .page-promotions-new-player__hero-description,
  .page-promotions-new-player__section-description,
  .page-promotions-new-player__cta-description {
    font-size: 0.95em;
  }
}