/* style/promotions-new-player.css */

/* Base Styles & Color Palette */
.page-promotions-new-player {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #08160F; /* Nền tối */
  color: #F2FFF6; /* Chữ sáng */
}

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

.page-promotions-new-player__dark-section {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-promotions-new-player__card {
  background-color: #11271B; /* Nền card tối */
  color: #F2FFF6; /* Chữ sáng */
  border: 1px solid #2E7A4E; /* Viền card */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-player__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-player__section-title {
  font-size: clamp(2em, 5vw, 2.8em);
  color: #F2C14E; /* Màu Gold cho tiêu đề chính */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-promotions-new-player__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #A7D9B8; /* Chữ phụ sáng */
}

.page-promotions-new-player__card-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 600;
}

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

/* Buttons */
.page-promotions-new-player__btn-primary,
.page-promotions-new-player__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-player__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Nút chính */
  color: #F2FFF6;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-promotions-new-player__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-promotions-new-player__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Chữ nút phụ */
  border: 2px solid #2AD16F;
}

.page-promotions-new-player__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6;
  border-color: #2AD16F;
}

.page-promotions-new-player__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.page-promotions-new-player__text-link {
  color: #2AD16F;
  text-decoration: none;
}

.page-promotions-new-player__text-link:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-promotions-new-player__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Adjusted min-height for better visual */
  padding: 10px 20px 60px; /* Small top padding, larger bottom */
  overflow: hidden;
}

.page-promotions-new-player__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Slightly transparent to allow text readability */
}

.page-promotions-new-player__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency for content readability */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-player__main-title {
  font-size: clamp(2.5em, 6vw, 3.5em);
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
}

.page-promotions-new-player__intro-text {
  font-size: clamp(1em, 2.5vw, 1.3em);
  color: #F2FFF6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Section */
.page-promotions-new-player__benefits-section {
  padding: 80px 0;
  text-align: center;
}

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

.page-promotions-new-player__benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promotions-new-player__benefit-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 50%;
  border: 3px solid #2AD16F;
  padding: 10px;
}

/* Promotion Types Section */
.page-promotions-new-player__promotion-types {
  padding: 80px 0;
}

.page-promotions-new-player__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-player__promo-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-new-player__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

/* Registration Guide Section */
.page-promotions-new-player__registration-guide {
  padding: 80px 0;
}

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

.page-promotions-new-player__step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

/* Terms Section */
.page-promotions-new-player__terms-section {
  padding: 80px 0;
}

.page-promotions-new-player__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-player__terms-list li {
  background-color: #11271B;
  border-left: 5px solid #2AD16F;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #A7D9B8;
  font-size: 1.05em;
}

.page-promotions-new-player__responsible-gambling-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #A7D9B8;
}

/* FAQ Section */
.page-promotions-new-player__faq-section {
  padding: 80px 0;
}

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

.page-promotions-new-player__faq-item {
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 8px;
}

.page-promotions-new-player__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6;
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid #2E7A4E;
  list-style: none; /* Remove default marker for details summary */
}

.page-promotions-new-player__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-new-player__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #2AD16F;
  margin-left: 15px;
}

.page-promotions-new-player__faq-answer {
  padding: 15px 25px;
  background-color: #0A4B2C; /* Deep Green for answer background */
  color: #A7D9B8;
  font-size: 1em;
  border-top: 1px solid #1E3A2A; /* Divider color */
}

.page-promotions-new-player__faq-answer p {
  margin: 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-player__hero-content {
    padding: 15px;
  }

  .page-promotions-new-player__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-promotions-new-player__intro-text {
    font-size: clamp(0.9em, 2.2vw, 1.2em);
  }
}

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

  .page-promotions-new-player__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-new-player__hero-section {
    min-height: 450px;
    padding-top: 10px !important; /* body handles header offset, small decorative padding here */
    padding-bottom: 40px;
  }

  .page-promotions-new-player__hero-content {
    padding: 15px;
    margin: 0 10px;
  }

  .page-promotions-new-player__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-promotions-new-player__intro-text {
    font-size: clamp(0.9em, 3vw, 1.1em);
    margin-bottom: 25px;
  }

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

  .page-promotions-new-player__btn-primary,
  .page-promotions-new-player__btn-secondary,
  .page-promotions-new-player a[class*="button"],
  .page-promotions-new-player a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-new-player__cta-buttons,
  .page-promotions-new-player__button-group,
  .page-promotions-new-player__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;
  }

  .page-promotions-new-player__section-title {
    font-size: clamp(1.8em, 6vw, 2.2em);
  }

  .page-promotions-new-player__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promotions-new-player__benefits-grid,
  .page-promotions-new-player__promo-grid,
  .page-promotions-new-player__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-player__benefit-icon {
    width: 100px;
    height: 100px;
  }

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

  .page-promotions-new-player__terms-list li {
    font-size: 0.95em;
  }

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

  /* Image responsiveness */
  .page-promotions-new-player img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !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;
  }

  /* Video responsiveness (if any, though not used here) */
  .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__video-section,
  .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: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-player__hero-section {
    min-height: 400px;
  }

  .page-promotions-new-player__main-title {
    font-size: clamp(1.5em, 8vw, 2.2em);
  }

  .page-promotions-new-player__intro-text {
    font-size: clamp(0.85em, 3.5vw, 1em);
  }

  .page-promotions-new-player__btn-primary,
  .page-promotions-new-player__btn-secondary {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-promotions-new-player__section-title {
    font-size: clamp(1.6em, 7vw, 2em);
  }

  .page-promotions-new-player__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-promotions-new-player__faq-toggle {
    font-size: 1.3em;
  }
}