/* style/promotions-new-player.css */
/* 页面完整样式代码 - 注意：所有选择器必须使用BEM命名规则（双下划线__连接） */

/* Base Styles for Page Content */
.page-promotions-new-player {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #121212, so text is light */
  background-color: #121212; /* Ensure page content matches body background for seamless look */
}

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

.page-promotions-new-player__section {
  padding: 60px 0;
}

.page-promotions-new-player__dark-bg {
  background-color: #121212;
  color: #ffffff;
}

.page-promotions-new-player__light-bg {
  background-color: #2a2a2a; /* Slightly lighter dark for contrast sections */
  color: #ffffff;
}

.page-promotions-new-player__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-new-player__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

/* Hero Section */
.page-promotions-new-player__hero-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px; /* Adjust for content, header offset handled by inline style */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.page-promotions-new-player__hero-section .page-promotions-new-player__container {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.page-promotions-new-player__hero-content {
  flex: 1;
  text-align: left;
}

.page-promotions-new-player__main-title {
  font-size: 3.5em;
  color: #FFFF00; /* Custom color for main title on dark background */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-promotions-new-player__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions-new-player__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-promotions-new-player__btn-register {
  background-color: #C30808; /* Custom color for Register button */
  color: #FFFF00; /* Custom color for Register button text */
  border: 2px solid #C30808;
}

.page-promotions-new-player__btn-register:hover {
  background-color: #e02020;
  border-color: #e02020;
}

.page-promotions-new-player__btn-secondary {
  background-color: #017439; /* Brand color */
  color: #ffffff;
  border: 2px solid #017439;
}

.page-promotions-new-player__btn-secondary:hover {
  background-color: #005a2e;
  border-color: #005a2e;
}

.page-promotions-new-player__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions-new-player__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Promotion Cards */
.page-promotions-new-player__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-player__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions-new-player__card-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-player__card-title {
  font-size: 1.8em;
  color: #FFFF00; /* Custom color for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-player__card-text {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: left;
}

.page-promotions-new-player__card-text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.page-promotions-new-player__card-text li {
  margin-bottom: 5px;
}

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

.page-promotions-new-player__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-promotions-new-player__step-title {
  font-size: 1.8em;
  color: #FFFF00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-player__step-text {
  font-size: 1em;
  color: #e0e0e0;
  text-align: left;
}

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

/* Terms and Conditions */
.page-promotions-new-player__terms-list {
  margin-top: 40px;
}

.page-promotions-new-player__term-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-player__term-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-new-player__term-text {
  font-size: 1em;
  color: #e0e0e0;
}

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

.page-promotions-new-player__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions-new-player__feature-icon {
  width: 150px; /* Larger icons for content */
  height: 150px; /* Larger icons for content */
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.page-promotions-new-player__feature-title {
  font-size: 1.8em;
  color: #FFFF00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-player__feature-text {
  font-size: 1em;
  color: #e0e0e0;
  text-align: left;
}

/* FAQ Section */
.page-promotions-new-player__faq-list {
  margin-top: 40px;
}

.page-promotions-new-player__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.page-promotions-new-player__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.page-promotions-new-player__faq-title {
  font-size: 1.2em;
  color: #017439;
  margin: 0;
  font-weight: bold;
  flex-grow: 1;
  text-align: left;
}

.page-promotions-new-player__faq-toggle {
  font-size: 1.8em;
  color: #FFFF00;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

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

.page-promotions-new-player__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 25px;
  color: #e0e0e0;
  text-align: left;
}

.page-promotions-new-player__faq-item.active .page-promotions-new-player__faq-answer {
  max-height: 500px; /* Adjust based on expected content height */
  padding: 15px 25px 25px;
}

.page-promotions-new-player__faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .page-promotions-new-player__hero-section .page-promotions-new-player__container {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions-new-player__hero-content {
    text-align: center;
  }

  .page-promotions-new-player__main-title {
    font-size: 2.8em;
  }

  .page-promotions-new-player__intro-text {
    font-size: 1.1em;
  }

  .page-promotions-new-player__cta-buttons {
    justify-content: center;
  }

  .page-promotions-new-player__hero-image-wrapper {
    margin-top: 40px;
  }

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

  .page-promotions-new-player__card,
  .page-promotions-new-player__step-item,
  .page-promotions-new-player__feature-card {
    padding: 25px;
  }

  .page-promotions-new-player__card-title,
  .page-promotions-new-player__step-title,
  .page-promotions-new-player__feature-title {
    font-size: 1.6em;
  }

  .page-promotions-new-player__term-title {
    font-size: 1.3em;
  }

  .page-promotions-new-player__faq-title {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-player__section {
    padding: 40px 0;
  }

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

  .page-promotions-new-player__intro-text {
    font-size: 1em;
  }

  .page-promotions-new-player__btn-register,
  .page-promotions-new-player__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-new-player__promotion-cards,
  .page-promotions-new-player__steps-guide,
  .page-promotions-new-player__features-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-new-player__card-image {
    height: 180px;
  }

  .page-promotions-new-player__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }

  .page-promotions-new-player__feature-icon {
    width: 120px;
    height: 120px;
  }

  .page-promotions-new-player__faq-question {
    padding: 15px 20px;
  }

  .page-promotions-new-player__faq-answer {
    padding: 0 20px;
  }

  .page-promotions-new-player__faq-item.active .page-promotions-new-player__faq-answer {
    padding: 10px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-player__container {
    padding: 0 15px;
  }

  .page-promotions-new-player__main-title {
    font-size: 1.8em;
  }

  .page-promotions-new-player__section-title {
    font-size: 1.6em;
  }

  .page-promotions-new-player__text-block {
    font-size: 0.95em;
  }

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

  .page-promotions-new-player__btn-register,
  .page-promotions-new-player__btn-secondary {
    width: 100%;
    text-align: center;
  }

  .page-promotions-new-player__card-title,
  .page-promotions-new-player__step-title,
  .page-promotions-new-player__feature-title {
    font-size: 1.4em;
  }

  .page-promotions-new-player__term-title {
    font-size: 1.2em;
  }

  .page-promotions-new-player__faq-title {
    font-size: 1em;
  }
}