/* style/promotions-first-deposit-bonus.css */
.page-promotions-first-deposit-bonus {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A2342; /* Primary deep blue background */
  line-height: 1.6;
}

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

.page-promotions-first-deposit-bonus h1, .page-promotions-first-deposit-bonus h2, .page-promotions-first-deposit-bonus h3 {
  color: #FFD700; /* Gold for headings */
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions-first-deposit-bonus h1 {
  font-size: 2.8em;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus h2 {
  font-size: 2.2em;
  font-weight: bold;
  padding-top: 40px;
}

.page-promotions-first-deposit-bonus h3 {
  font-size: 1.6em;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-promotions-first-deposit-bonus .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  text-align: center;
}

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

.page-promotions-first-deposit-bonus .btn-primary:hover {
  background-color: #e6c200;
  color: #000;
}

.page-promotions-first-deposit-bonus .btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-promotions-first-deposit-bonus .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
}

/* Hero Section */
.page-promotions-first-deposit-bonus .hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-first-deposit-bonus .hero-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.page-promotions-first-deposit-bonus .hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-promotions-first-deposit-bonus .hero-content h1 {
  text-align: left;
  color: #FFD700;
}

.page-promotions-first-deposit-bonus .hero-content p {
  text-align: left;
  font-size: 1.1em;
  color: #FFFFFF;
}

.page-promotions-first-deposit-bonus .hero-actions {
  margin-top: 30px;
  text-align: left;
}

.page-promotions-first-deposit-bonus .hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions-first-deposit-bonus .hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* General Sections */
.page-promotions-first-deposit-bonus section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-first-deposit-bonus section:last-of-type {
  border-bottom: none;
}

.page-promotions-first-deposit-bonus .section-intro p {
  color: #E0E0E0;
  max-width: 900px;
  margin: 0 auto 15px auto;
}

.page-promotions-first-deposit-bonus .section-how-to-claim ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 900px;
  margin: 30px auto;
}

.page-promotions-first-deposit-bonus .section-how-to-claim ol li {
  counter-increment: step-counter;
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
  color: #E0E0E0;
}

.page-promotions-first-deposit-bonus .section-how-to-claim ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #0A2342;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus .section-how-to-claim ol li h3 {
  text-align: left;
  color: #FFD700;
  margin-top: 0;
}

.page-promotions-first-deposit-bonus .image-with-text-right {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-promotions-first-deposit-bonus .image-with-text-right img {
  flex: 1;
  min-width: 250px;
  max-width: 45%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus .image-with-text-right div {
  flex: 1;
  min-width: 300px;
  color: #E0E0E0;
}

.page-promotions-first-deposit-bonus .image-with-text-right div h3 {
  text-align: left;
  color: #FFD700;
}

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

.page-promotions-first-deposit-bonus .bonus-item {
  background-color: #1A3A60; /* Slightly lighter deep blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #E0E0E0;
}

.page-promotions-first-deposit-bonus .bonus-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-promotions-first-deposit-bonus .bonus-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 0;
}

.page-promotions-first-deposit-bonus .terms-flex-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-promotions-first-deposit-bonus .terms-image {
  flex: 1;
  min-width: 300px;
  max-width: 45%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus .terms-list {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding: 0;
  color: #E0E0E0;
}

.page-promotions-first-deposit-bonus .terms-list li {
  background-color: #1A3A60;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #FFD700;
}

.page-promotions-first-deposit-bonus .terms-list li strong {
  color: #FFD700;
}

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

.page-promotions-first-deposit-bonus .feature-item {
  background-color: #1A3A60;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #E0E0E0;
}

.page-promotions-first-deposit-bonus .feature-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-promotions-first-deposit-bonus .feature-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 0;
}

.page-promotions-first-deposit-bonus .faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-promotions-first-deposit-bonus .faq-item {
  background-color: #1A3A60;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus .faq-question {
  background-color: #0A2342;
  color: #FFD700;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus .faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
}

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

.page-promotions-first-deposit-bonus .faq-question:hover {
  background-color: #1A3A60;
}

.page-promotions-first-deposit-bonus .faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #E0E0E0;
}

.page-promotions-first-deposit-bonus .faq-answer.active {
  max-height: 500px; /* Adjust as needed, JS will set exact scrollHeight */
  padding: 15px 25px;
}

.page-promotions-first-deposit-bonus .section-cta {
  text-align: center;
  padding-bottom: 80px;
}

.page-promotions-first-deposit-bonus .cta-actions {
  margin-top: 30px;
}

.page-promotions-first-deposit-bonus .cta-image {
  max-width: 80%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-first-deposit-bonus .hero-section .container {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions-first-deposit-bonus .hero-content, .page-promotions-first-deposit-bonus .hero-actions {
    text-align: center;
  }

  .page-promotions-first-deposit-bonus .hero-content h1 {
    font-size: 2.2em;
    text-align: center;
  }

  .page-promotions-first-deposit-bonus .hero-content p {
    text-align: center;
  }

  .page-promotions-first-deposit-bonus .image-with-text-right {
    flex-direction: column;
  }

  .page-promotions-first-deposit-bonus .image-with-text-right img {
    max-width: 100%;
  }

  .page-promotions-first-deposit-bonus .image-with-text-right div h3 {
    text-align: center;
  }

  .page-promotions-first-deposit-bonus .terms-flex-container {
    flex-direction: column;
  }

  .page-promotions-first-deposit-bonus .terms-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus h1 {
    font-size: 2em;
  }

  .page-promotions-first-deposit-bonus h2 {
    font-size: 1.8em;
  }

  .page-promotions-first-deposit-bonus h3 {
    font-size: 1.3em;
  }

  .page-promotions-first-deposit-bonus .btn {
    padding: 10px 20px;
    margin: 5px;
  }

  .page-promotions-first-deposit-bonus .section-how-to-claim ol li {
    padding-left: 50px;
  }

  .page-promotions-first-deposit-bonus .section-how-to-claim ol li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit-bonus h1 {
    font-size: 1.8em;
  }

  .page-promotions-first-deposit-bonus h2 {
    font-size: 1.6em;
  }

  .page-promotions-first-deposit-bonus .hero-content p {
    font-size: 1em;
  }

  .page-promotions-first-deposit-bonus .btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}