/* style/promotions-first-deposit.css */
.page-promotions-first-deposit {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7fa; /* Light background for readability */
}

.page-promotions-first-deposit .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-promotions-first-deposit .btn-primary {
  background-color: #FFD600; /* Gold */
  color: #0D47A1; /* Deep Blue */
  border: 2px solid #FFD600;
}

.page-promotions-first-deposit .btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #0D47A1;
}

.page-promotions-first-deposit .btn-secondary {
  background-color: #0D47A1; /* Deep Blue */
  color: #FFD600; /* Gold */
  border: 2px solid #0D47A1;
}

.page-promotions-first-deposit .btn-secondary:hover {
  background-color: #0b3a82;
  border-color: #0b3a82;
  color: #FFD600;
}

.page-promotions-first-deposit .btn-small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-promotions-first-deposit .btn-large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-promotions-first-deposit .hero-section {
  background: linear-gradient(135deg, #0D47A1 0%, #1a5cb8 100%); /* Deep Blue to lighter blue gradient */
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-first-deposit .hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-promotions-first-deposit .hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-promotions-first-deposit .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD600; /* Gold for emphasis */
  font-weight: 700;
  line-height: 1.1;
}

.page-promotions-first-deposit .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-first-deposit .hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%; /* Adjust as needed */
  max-width: 700px;
  opacity: 0.7;
  pointer-events: none;
  transform: translateX(20%);
}

.page-promotions-first-deposit .hero-image {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .page-promotions-first-deposit .hero-section .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .page-promotions-first-deposit .hero-content {
    text-align: left;
    max-width: 50%;
  }
  .page-promotions-first-deposit .hero-image-wrapper {
    position: relative;
    width: 45%;
    transform: none;
    opacity: 1;
  }
  .page-promotions-first-deposit .hero-title {
    font-size: 4em;
  }
}

.page-promotions-first-deposit .section-title {
  font-size: 2.5em;
  color: #0D47A1; /* Deep Blue */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}

.page-promotions-first-deposit .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD600; /* Gold accent */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-first-deposit .section-intro {
  text-align: center;
  font-size: 1.15em;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #555;
}

.page-promotions-first-deposit .promo-details-section, 
.page-promotions-first-deposit .how-to-claim-section, 
.page-promotions-first-deposit .why-j9bet-section, 
.page-promotions-first-deposit .faq-section, 
.page-promotions-first-deposit .final-cta-section {
  padding: 80px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.page-promotions-first-deposit .promo-details-section {
  background-color: #fcfcfc;
}

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

.page-promotions-first-deposit .detail-card {
  background-color: #e3f2fd; /* Light blue background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-first-deposit .detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.page-promotions-first-deposit .detail-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  color: #0D47A1; /* Deep Blue icon */
}

.page-promotions-first-deposit .card-title {
  font-size: 1.5em;
  color: #0D47A1; /* Deep Blue */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-first-deposit .card-text {
  color: #666;
  font-size: 1em;
}

.page-promotions-first-deposit .cta-wrapper {
  text-align: center;
  margin-top: 50px;
  background-color: #fffde7; /* Very light gold */
  padding: 40px;
  border-radius: 12px;
  border: 1px dashed #FFD600;
}

.page-promotions-first-deposit .cta-text {
  font-size: 1.3em;
  color: #0D47A1;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-promotions-first-deposit .how-to-claim-section {
  background-color: #f8fbfd;
}

.page-promotions-first-deposit .steps-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.page-promotions-first-deposit .steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
}

.page-promotions-first-deposit .step-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: #0D47A1; /* Deep Blue */
  color: #FFD600; /* Gold text */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 0 0 5px rgba(255, 214, 0, 0.3);
}

.page-promotions-first-deposit .step-title {
  font-size: 1.6em;
  color: #0D47A1; /* Deep Blue */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-first-deposit .step-description {
  color: #555;
  font-size: 1.05em;
}

.page-promotions-first-deposit .step-description a {
  color: #0D47A1;
  text-decoration: underline;
}

.page-promotions-first-deposit .note-text {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #777;
}

.page-promotions-first-deposit .why-j9bet-section {
  background-color: #eaf3ff; /* Lighter blue background */
}

.page-promotions-first-deposit .why-j9bet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-first-deposit .reason-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-first-deposit .reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.page-promotions-first-deposit .reason-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: #FFD600; /* Gold icon */
  background-color: #0D47A1; /* Deep Blue background for icon */
  border-radius: 50%;
  padding: 10px;
}

.page-promotions-first-deposit .reason-card .card-title {
  font-size: 1.6em;
  color: #0D47A1;
  margin-bottom: 15px;
}

.page-promotions-first-deposit .reason-card .card-text {
  color: #666;
  font-size: 1em;
  flex-grow: 1;
}

.page-promotions-first-deposit .reason-card .btn-download {
  margin-top: 20px;
  background-color: #FFD600;
  color: #0D47A1;
  border: none;
}

.page-promotions-first-deposit .reason-card .btn-download:hover {
  background-color: #e6c200;
}

.page-promotions-first-deposit .faq-section {
  background-color: #ffffff;
}

.page-promotions-first-deposit .faq-item {
  background-color: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
}

.page-promotions-first-deposit .faq-question {
  font-size: 1.3em;
  color: #0D47A1; /* Deep Blue */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-first-deposit .faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD600;
  font-weight: bold;
}

.page-promotions-first-deposit .faq-question.active::after {
  content: '-';
}

.page-promotions-first-deposit .faq-answer {
  color: #666;
  font-size: 1.05em;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-promotions-first-deposit .faq-answer.active {
  display: block;
}

.page-promotions-first-deposit .final-cta-section {
  background: linear-gradient(45deg, #0D47A1, #2196F3); /* Deep Blue to lighter blue */
  color: #ffffff;
  text-align: center;
  padding: 100px 0;
}

.page-promotions-first-deposit .final-cta-section .section-title {
  color: #FFD600; /* Gold */
  margin-bottom: 20px;
}

.page-promotions-first-deposit .final-cta-section .section-title::after {
  background-color: #FFD600;
}

.page-promotions-first-deposit .final-cta-section .section-intro {
  color: #ffffff;
  margin-bottom: 40px;
}

.page-promotions-first-deposit .final-cta-section .btn-large {
  margin-bottom: 30px;
}

.page-promotions-first-deposit .contact-info {
  font-size: 1.1em;
}

.page-promotions-first-deposit .contact-info a {
  color: #FFD600; /* Gold */
  text-decoration: underline;
}

.page-promotions-first-deposit .contact-info a:hover {
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions-first-deposit .hero-title {
    font-size: 2.5em;
  }
  .page-promotions-first-deposit .hero-description {
    font-size: 1em;
  }
  .page-promotions-first-deposit .section-title {
    font-size: 2em;
  }
  .page-promotions-first-deposit .section-intro {
    font-size: 1em;
  }
  .page-promotions-first-deposit .details-grid, 
  .page-promotions-first-deposit .why-j9bet-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-first-deposit .steps-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-promotions-first-deposit .step-icon {
    margin-bottom: 15px;
  }
  .page-promotions-first-deposit .hero-image-wrapper {
    width: 80%;
    margin-top: 30px;
    position: relative;
    transform: none;
    opacity: 1;
  }
  .page-promotions-first-deposit .hero-section {
    padding: 60px 0;
  }
  .page-promotions-first-deposit .hero-section .container {
    gap: 30px;
  }
  .page-promotions-first-deposit .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit .hero-title {
    font-size: 2em;
  }
  .page-promotions-first-deposit .btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-promotions-first-deposit .btn-large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}