.page-promotions-new-user-bonus {
  font-family: 'Arial', sans-serif;
  color: #f5f5f5; /* Light text on dark background for high contrast */
  background-color: #0A0A0A; /* Main dark background */
  line-height: 1.6;
}

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

.page-promotions-new-user-bonus h1,
.page-promotions-new-user-bonus h2,
.page-promotions-new-user-bonus h3 {
  color: #FFD700; /* Gold for headings */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-promotions-new-user-bonus h1 {
  font-size: 2.8em;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-promotions-new-user-bonus h2 {
  font-size: 2.2em;
  padding-top: 40px;
  margin-bottom: 35px;
}

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

.page-promotions-new-user-bonus p {
  margin-bottom: 1em;
  color: #e0e0e0; /* Slightly lighter text for paragraphs */
}

.page-promotions-new-user-bonus a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
}

.page-promotions-new-user-bonus a:hover {
  text-decoration: underline;
  color: #fff;
}

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

.page-promotions-new-user-bonus .btn-primary {
  background-color: #FFD700; /* Gold button background */
  color: #0A0A0A; /* Dark text on gold button */
}

.page-promotions-new-user-bonus .btn-primary:hover {
  background-color: #e0b800; /* Darker gold on hover */
  color: #000;
}

.page-promotions-new-user-bonus .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-new-user-bonus .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A0A0A;
}

.page-promotions-new-user-bonus .btn-sm {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-promotions-new-user-bonus .btn-lg {
  padding: 15px 30px;
  font-size: 1.1em;
}

/* Hero Section */
.page-promotions-new-user-bonus .hero-section {
  background: linear-gradient(135deg, #0A0A0A 0%, #2a2a2a 100%); /* Dark gradient background */
  padding: 100px 0;
  text-align: center;
  border-bottom: 3px solid #FFD700;
}

.page-promotions-new-user-bonus .hero-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto 40px auto;
}

/* About Onbet Section */
.page-promotions-new-user-bonus .about-onbet-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-promotions-new-user-bonus .about-onbet-section .content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-promotions-new-user-bonus .about-onbet-section .text-content,
.page-promotions-new-user-bonus .about-onbet-section .image-content {
  flex: 1;
  min-width: 300px;
}

.page-promotions-new-user-bonus .about-onbet-section .image-content img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Offers Section */
.page-promotions-new-user-bonus .offers-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

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

.page-promotions-new-user-bonus .offer-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promotions-new-user-bonus .offer-card .card-img {
  max-width: 100%;
  height: 180px; /* Fixed height for image */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus .offer-card h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus .offer-card p {
  font-size: 0.95em;
  color: #ccc;
  flex-grow: 1;
}

.page-promotions-new-user-bonus .offer-card .btn {
  margin-top: 20px;
}

/* Registration Guide Section */
.page-promotions-new-user-bonus .registration-guide-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-promotions-new-user-bonus .guide-steps {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-promotions-new-user-bonus .step-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  background-color: #0A0A0A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus .step-item .step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-new-user-bonus .step-item h3 {
  color: #FFD700;
  font-size: 1.3em;
}

.page-promotions-new-user-bonus .registration-guide-section .btn-lg {
  margin-top: 50px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Why Choose Us Section */
.page-promotions-new-user-bonus .why-choose-us-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

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

.page-promotions-new-user-bonus .feature-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus .feature-item .feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 4px #FFD700);
}

.page-promotions-new-user-bonus .feature-item h3 {
  color: #FFD700;
  font-size: 1.3em;
}

.page-promotions-new-user-bonus .feature-item p {
  color: #ccc;
}

/* App Download Section */
.page-promotions-new-user-bonus .app-download-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-promotions-new-user-bonus .app-download-section .content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-promotions-new-user-bonus .app-download-section .content-wrapper.reverse {
  flex-direction: row-reverse;
}

.page-promotions-new-user-bonus .app-download-section .text-content,
.page-promotions-new-user-bonus .app-download-section .image-content {
  flex: 1;
  min-width: 300px;
}

.page-promotions-new-user-bonus .app-download-section .image-content img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus .app-download-section ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-promotions-new-user-bonus .app-download-section ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.page-promotions-new-user-bonus .app-download-section .btn-lg {
  margin-top: 30px;
}

/* FAQ Section */
.page-promotions-new-user-bonus .faq-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-promotions-new-user-bonus .faq-list {
  margin-top: 40px;
}

.page-promotions-new-user-bonus .faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus .faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: left;
}

.page-promotions-new-user-bonus .faq-item p {
  color: #ccc;
  font-size: 1em;
}

/* CTA Section */
.page-promotions-new-user-bonus .cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #2a2a2a 0%, #0A0A0A 100%);
  border-top: 3px solid #FFD700;
}

.page-promotions-new-user-bonus .cta-section p {
  font-size: 1.3em;
  max-width: 900px;
  margin: 20px auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-new-user-bonus h1 {
    font-size: 2.4em;
  }
  .page-promotions-new-user-bonus h2 {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus h3 {
    font-size: 1.4em;
  }
  .page-promotions-new-user-bonus .about-onbet-section .content-wrapper,
  .page-promotions-new-user-bonus .app-download-section .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions-new-user-bonus .app-download-section .content-wrapper.reverse {
    flex-direction: column;
  }
  .page-promotions-new-user-bonus .app-download-section ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus .hero-section {
    padding: 60px 0;
  }
  .page-promotions-new-user-bonus h1 {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus h2 {
    font-size: 1.6em;
  }
  .page-promotions-new-user-bonus h3 {
    font-size: 1.2em;
  }
  .page-promotions-new-user-bonus .offer-grid,
  .page-promotions-new-user-bonus .guide-steps,
  .page-promotions-new-user-bonus .feature-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-bonus .step-item,
  .page-promotions-new-user-bonus .offer-card,
  .page-promotions-new-user-bonus .feature-item {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus .hero-section p {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions-new-user-bonus .btn-lg {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-new-user-bonus .faq-item h3 {
    font-size: 1.2em;
  }
  .page-promotions-new-user-bonus .cta-section p {
    font-size: 1em;
  }
}