/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f8f8f8;
}

.page-promotions-new-user-bonus .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-new-user-bonus .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
}

.page-promotions-new-user-bonus .btn-primary {
  background-color: #B22222; /* Main color */
  color: #FFFFFF; /* White text for contrast */
  border: 2px solid #B22222;
}

.page-promotions-new-user-bonus .btn-primary:hover {
  background-color: #991e1e;
  border-color: #991e1e;
  transform: translateY(-2px);
}

.page-promotions-new-user-bonus .btn-secondary {
  background-color: #FFD700; /* Accent color */
  color: #333; /* Dark text for contrast */
  border: 2px solid #FFD700;
}

.page-promotions-new-user-bonus .btn-secondary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions-new-user-bonus .hero-section {
  background: linear-gradient(135deg, #B22222 0%, #a01c1c 100%); /* Darker gradient for hero */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.page-promotions-new-user-bonus .hero-section .container {
  z-index: 1;
  position: relative;
}

.page-promotions-new-user-bonus .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus .hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.page-promotions-new-user-bonus .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-promotions-new-user-bonus .section-title {
  font-size: 2.5em;
  color: #B22222; /* Main color */
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-new-user-bonus .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Accent color */
  border-radius: 2px;
}

.page-promotions-new-user-bonus .section-description {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-promotions-new-user-bonus .bonus-details-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-promotions-new-user-bonus .detail-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-user-bonus .detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-promotions-new-user-bonus .detail-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(178, 34, 34, 0.3)); /* Shadow based on main color */
}

.page-promotions-new-user-bonus .detail-card h3 {
  font-size: 1.6em;
  color: #B22222;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus .detail-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #666;
}

.page-promotions-new-user-bonus .sub-section-title {
  font-size: 2em;
  color: #B22222;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus .steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-promotions-new-user-bonus .steps-list li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
  line-height: 1.6;
  color: #444;
}

.page-promotions-new-user-bonus .steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #B22222; /* Main color */
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 4px 10px rgba(178, 34, 34, 0.3);
}

.page-promotions-new-user-bonus .steps-list li strong {
  color: #B22222;
}

.page-promotions-new-user-bonus .call-to-action-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #333;
}

.page-promotions-new-user-bonus .btn-claim-bonus {
  display: block;
  width: fit-content;
  margin: 0 auto 60px auto;
}

.page-promotions-new-user-bonus .why-choose-us-section {
  background-color: #FFFFFF;
  padding: 60px 0;
  border-top: 1px solid #eee;
}

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

.page-promotions-new-user-bonus .feature-card {
  background-color: #fcfcfc;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.page-promotions-new-user-bonus .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus .feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 6px rgba(255, 215, 0, 0.4)); /* Shadow based on accent color */
}

.page-promotions-new-user-bonus .feature-card h3 {
  font-size: 1.5em;
  color: #B22222;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus .feature-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #666;
}

.page-promotions-new-user-bonus .btn-explore {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.page-promotions-new-user-bonus .game-guidance-section {
  padding: 60px 0;
  background-color: #f0f0f0;
}

.page-promotions-new-user-bonus .guidance-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.page-promotions-new-user-bonus .guidance-item.reverse {
  flex-direction: row-reverse;
}

.page-promotions-new-user-bonus .guidance-image {
  width: 40%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus .guidance-content {
  width: 60%;
}

.page-promotions-new-user-bonus .guidance-content h3 {
  font-size: 1.8em;
  color: #B22222;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus .guidance-content p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus .tip-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus .tip-list li {
  font-size: 1em;
  line-height: 1.6;
  color: #444;
  margin-bottom: 8px;
}

.page-promotions-new-user-bonus .tip-list li strong {
  color: #B22222;
}

.page-promotions-new-user-bonus .final-guidance-text {
  text-align: center;
  font-size: 1.15em;
  margin-top: 40px;
  margin-bottom: 40px;
  color: #444;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus .btn-learn-more {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.page-promotions-new-user-bonus .testimonials-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-promotions-new-user-bonus .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-new-user-bonus .testimonial-card {
  background-color: #fcfcfc;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FFD700; /* Accent color for a nice touch */
}

.page-promotions-new-user-bonus .testimonial-card .quote {
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus .testimonial-card .author {
  font-weight: bold;
  color: #B22222;
  text-align: right;
  font-size: 0.95em;
}

.page-promotions-new-user-bonus .cta-final-section {
  background: linear-gradient(135deg, #B22222, #FFD700); /* Blend of main and accent */
  color: #FFFFFF;
  padding: 70px 0;
  text-align: center;
}

.page-promotions-new-user-bonus .cta-final-section .section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus .cta-final-section .section-title::after {
  background-color: #FFFFFF;
}

.page-promotions-new-user-bonus .cta-final-section .section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus .btn-final-register {
  background-color: #FFD700;
  color: #B22222;
  border-color: #FFD700;
  padding: 15px 35px;
  font-size: 1.2em;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus .btn-final-register:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #991e1e;
}

.page-promotions-new-user-bonus .small-text {
  font-size: 0.9em;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-new-user-bonus .hero-title {
    font-size: 2.8em;
  }
  .page-promotions-new-user-bonus .section-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus .guidance-item {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .page-promotions-new-user-bonus .guidance-item.reverse {
    flex-direction: column;
  }
  .page-promotions-new-user-bonus .guidance-image,
  .page-promotions-new-user-bonus .guidance-content {
    width: 100%;
    max-width: 100%;
  }
  .page-promotions-new-user-bonus .tip-list {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus .hero-title {
    font-size: 2.2em;
  }
  .page-promotions-new-user-bonus .hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus .section-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus .section-description {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus .detail-card, .page-promotions-new-user-bonus .feature-card {
    padding: 20px;
  }
  .page-promotions-new-user-bonus .detail-icon, .page-promotions-new-user-bonus .feature-icon {
    width: 50px;
    height: 50px;
  }
  .page-promotions-new-user-bonus .steps-list li {
    font-size: 1em;
    padding-left: 50px;
  }
  .page-promotions-new-user-bonus .steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus .hero-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus .hero-subtitle {
    font-size: 0.95em;
  }
  .page-promotions-new-user-bonus .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .page-promotions-new-user-bonus .section-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-bonus .guidance-item {
    padding: 20px;
  }
  .page-promotions-new-user-bonus .guidance-content h3 {
    font-size: 1.5em;
  }
  .page-promotions-new-user-bonus .guidance-image {
    max-width: 100%;
  }
}