.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark #121212, so use light text */
  background-color: #121212; /* Ensure page content matches body background for consistency */
}

.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;
  padding: var(--header-offset, 120px) 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #017439, #005f2e);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Buttons */
.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: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__btn-primary {
  background-color: #C30808; /* Custom color for Register/Login */
  color: #FFFF00; /* Custom font color for Register/Login */
  border: 2px solid #C30808;
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background-color: #e01b1b;
  transform: translateY(-2px);
}

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

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-promotions-new-user-bonus__btn-primary--center,
.page-promotions-new-user-bonus__btn-secondary--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.page-promotions-new-user-bonus__btn-primary--large {
  padding: 18px 40px;
  font-size: 1.1em;
}

/* Section Titles and Paragraphs */
.page-promotions-new-user-bonus__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: #ffffff;
}

.page-promotions-new-user-bonus__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__paragraph--center {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Backgrounds */
.page-promotions-new-user-bonus__dark-bg {
  background-color: #1a1a1a; /* Dark background for sections */
  color: #ffffff;
  padding: 60px 0;
}

.page-promotions-new-user-bonus__light-bg {
  background-color: #2a2a2a; /* Slightly lighter dark background for contrast */
  color: #f0f0f0;
  padding: 60px 0;
}

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__section-title {
    color: #ffffff;
}

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__card {
    background-color: rgba(255, 255, 255, 0.1);
    color: #f0f0f0;
}

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__card-title {
    color: #ffffff;
}

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__step-title {
    color: #ffffff;
}

/* Overview Section */
.page-promotions-new-user-bonus__overview-section .page-promotions-new-user-bonus__image-full {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  object-fit: cover;
}

/* Benefits Section */
.page-promotions-new-user-bonus__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent card background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__card:hover {
  transform: translateY(-5px);
}

.page-promotions-new-user-bonus__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: bold;
}

.page-promotions-new-user-bonus__card-text {
  font-size: 1em;
  color: #cccccc;
}

/* How to Claim Section */
.page-promotions-new-user-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__step-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: bold;
}

.page-promotions-new-user-bonus__step-text {
  font-size: 1em;
  color: #cccccc;
}

/* Terms Section */
.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 4px solid #017439;
  border-radius: 5px;
  font-size: 1.05em;
  color: #e0e0e0;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-new-user-bonus__faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions-new-user-bonus__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffffff;
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFFF00; /* Custom color for toggle icon */
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-new-user-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-promotions-new-user-bonus__faq-answer p {
  margin-top: 0;
  margin-bottom: 10px;
  color: #cccccc;
}

/* Video Section */
.page-promotions-new-user-bonus__video-section {
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.page-promotions-new-user-bonus__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Max width for video container */
  margin: 0 auto 30px;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

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

.page-promotions-new-user-bonus__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.page-promotions-new-user-bonus__video-wrapper:hover .page-promotions-new-user-bonus__video-overlay {
    opacity: 1;
}

.page-promotions-new-user-bonus__play-button {
    background-color: #C30808; /* Custom color for Login/Register */
    color: #FFFF00; /* Custom font color for Login/Register */
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__play-button:hover {
    background-color: #e01b1b;
}

/* Final CTA Section */
.page-promotions-new-user-bonus__cta-final-section {
  padding: 80px 0;
  text-align: center;
}

.page-promotions-new-user-bonus__cta-final-content {
  max-width: 900px;
}

/* General Image Styles */
.page-promotions-new-user-bonus img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.8em;
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding: var(--header-offset, 120px) 20px 60px;
  }

  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.2em;
  }

  .page-promotions-new-user-bonus__hero-description {
    font-size: 1.1em;
  }

  .page-promotions-new-user-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-promotions-new-user-bonus__dark-bg,
  .page-promotions-new-user-bonus__light-bg {
    padding: 40px 0;
  }

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

  .page-promotions-new-user-bonus__paragraph {
    font-size: 1em;
  }

  .page-promotions-new-user-bonus__benefits-grid,
  .page-promotions-new-user-bonus__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__step-card {
    padding: 20px;
  }

  .page-promotions-new-user-bonus__card-title,
  .page-promotions-new-user-bonus__step-title {
    font-size: 1.3em;
  }

  .page-promotions-new-user-bonus__list-item {
    font-size: 0.95em;
    padding: 12px 15px;
  }

  .page-promotions-new-user-bonus__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-promotions-new-user-bonus__faq-question h3 {
    font-size: 1.1em;
  }

  .page-promotions-new-user-bonus__faq-answer {
    padding: 10px 20px;
  }

  .page-promotions-new-user-bonus__video-wrapper {
    margin-left: 15px;
    margin-right: 15px;
    padding-bottom: 65%; /* Adjust aspect ratio for better mobile view if needed */
  }

  .page-promotions-new-user-bonus__play-button {
    padding: 10px 20px;
    font-size: 1em;
  }

  /* Force responsive for all images */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Force responsive for all video containers */
  .page-promotions-new-user-bonus__video-section,
  .page-promotions-new-user-bonus__video-container,
  .page-promotions-new-user-bonus__video-wrapper,
  .page-promotions-new-user-bonus__cta-final-section,
  .page-promotions-new-user-bonus__overview-section,
  .page-promotions-new-user-bonus__benefits-section,
  .page-promotions-new-user-bonus__how-to-claim-section,
  .page-promotions-new-user-bonus__terms-section,
  .page-promotions-new-user-bonus__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Video element itself */
  .page-promotions-new-user-bonus video,
  .page-promotions-new-user-bonus__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Specific video section padding for mobile */
  .page-promotions-new-user-bonus__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  /* Button groups mobile adaptation */
  .page-promotions-new-user-bonus__cta-buttons,
  .page-promotions-new-user-bonus__button-group,
  .page-promotions-new-user-bonus__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }
}