/* style/getting-started-first-deposit.css */
.page-getting-started-first-deposit {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0d124d; /* Darker blue for overall background */
}

.page-getting-started-first-deposit .highlight {
  color: #FFD700;
}

.page-getting-started-first-deposit__hero-section {
  background: linear-gradient(135deg, #1A237E, #0d124d);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.page-getting-started-first-deposit__hero-content {
  max-width: 800px;
}

.page-getting-started-first-deposit__hero-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-getting-started-first-deposit__hero-description {
  font-size: 1.2em;
  color: #B0B0B0;
  margin-bottom: 30px;
}

.page-getting-started-first-deposit__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-getting-started-first-deposit__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-getting-started-first-deposit__button--primary {
  background-color: #FFD700;
  color: #1A237E;
}

.page-getting-started-first-deposit__button--primary:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-getting-started-first-deposit__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-getting-started-first-deposit__button--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-2px);
}

.page-getting-started-first-deposit__hero-image-wrapper {
  width: 100%;
  max-width: 700px;
}

.page-getting-started-first-deposit__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-getting-started-first-deposit__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-getting-started-first-deposit__section-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.page-getting-started-first-deposit__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #1A237E;
  border-radius: 2px;
}

.page-getting-started-first-deposit__section-intro {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.page-getting-started-first-deposit__feature-item {
  background-color: #1A237E;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-getting-started-first-deposit__feature-item:hover {
  transform: translateY(-5px);
}

.page-getting-started-first-deposit__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-getting-started-first-deposit__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-getting-started-first-deposit__feature-description {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
}

.page-getting-started-first-deposit__step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-getting-started-first-deposit__step-item {
  background-color: #1A237E;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 70px; /* Space for step number */
}

.page-getting-started-first-deposit__step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #FFD700;
  color: #1A237E;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-getting-started-first-deposit__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-getting-started-first-deposit__step-description {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
}

.page-getting-started-first-deposit__step-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-getting-started-first-deposit__step-description a:hover {
  text-decoration: underline;
}

.page-getting-started-first-deposit__image-full-width {
  margin-top: 60px;
  width: 100%;
}

.page-getting-started-first-deposit__process-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-getting-started-first-deposit__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-getting-started-first-deposit__method-item {
  background-color: #1A237E;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-getting-started-first-deposit__method-item:hover {
  transform: translateY(-5px);
}

.page-getting-started-first-deposit__method-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-getting-started-first-deposit__method-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-getting-started-first-deposit__method-description {
  font-size: 0.95em;
  color: #E0E0E0;
  line-height: 1.6;
}

.page-getting-started-first-deposit__bonuses .page-getting-started-first-deposit__section-title::after {
  background-color: #FFD700;
}

.page-getting-started-first-deposit__bonus-card {
  background: linear-gradient(160deg, #1A237E, #0d124d);
  border-radius: 15px;
  padding: 40px;
  display: flex;
  flex-direction: column; /* Default for mobile */
  align-items: center;
  gap: 30px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-getting-started-first-deposit__bonus-card {
    flex-direction: row; /* Desktop layout */
    text-align: left;
  }
}

.page-getting-started-first-deposit__bonus-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
}

.page-getting-started-first-deposit__bonus-content {
  flex-grow: 1;
}

.page-getting-started-first-deposit__bonus-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-getting-started-first-deposit__bonus-description {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 25px;
  line-height: 1.7;
}

.page-getting-started-first-deposit__bonus-details {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-getting-started-first-deposit__bonus-details li {
  display: flex;
  align-items: center;
  color: #B0B0B0;
  margin-bottom: 10px;
  font-size: 1em;
}

.page-getting-started-first-deposit__bonus-details li i {
  color: #FFD700;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-getting-started-first-deposit__section-outro {
  font-size: 1em;
  color: #B0B0B0;
  margin-top: 30px;
  line-height: 1.6;
}

.page-getting-started-first-deposit__note-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-getting-started-first-deposit__note-list li {
  background-color: #1A237E;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: #E0E0E0;
  line-height: 1.7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-getting-started-first-deposit__note-list li i {
  color: #FFD700;
  margin-right: 15px;
  font-size: 1.5em;
  flex-shrink: 0;
  margin-top: 3px;
}

.page-getting-started-first-deposit__note-list li strong {
  color: #FFD700;
}

.page-getting-started-first-deposit__contact-cta {
  background-color: #0d124d;
  border: 2px dashed #FFD700;
  padding: 30px;
  border-radius: 10px;
  margin-top: 50px;
}

.page-getting-started-first-deposit__contact-cta p {
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-getting-started-first-deposit__faq-item {
  background-color: #1A237E;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-getting-started-first-deposit__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-getting-started-first-deposit__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
}

.page-getting-started-first-deposit__cta-final {
  background-color: #1A237E;
  padding: 80px 20px;
  margin-top: 60px;
  border-radius: 15px;
}

.page-getting-started-first-deposit__cta-final .page-getting-started-first-deposit__section-title {
  color: #FFD700;
}

.page-getting-started-first-deposit__cta-final .page-getting-started-first-deposit__section-title::after {
  background-color: #FFD700;
}

.page-getting-started-first-deposit__cta-final .page-getting-started-first-deposit__section-intro {
  color: #B0B0B0;
}

.page-getting-started-first-deposit__cta-actions {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-getting-started-first-deposit__hero-title {
    font-size: 2.2em;
  }

  .page-getting-started-first-deposit__hero-description {
    font-size: 1em;
  }

  .page-getting-started-first-deposit__section-title {
    font-size: 1.8em;
  }

  .page-getting-started-first-deposit__bonus-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .page-getting-started-first-deposit__bonus-image {
    margin-bottom: 20px;
  }

  .page-getting-started-first-deposit__bonus-details {
    text-align: left;
  }

  .page-getting-started-first-deposit__hero-actions,
  .page-getting-started-first-deposit__cta-actions {
    flex-direction: column;
  }

  .page-getting-started-first-deposit__button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-getting-started-first-deposit__hero-section {
    padding: 60px 15px;
  }

  .page-getting-started-first-deposit__section {
    padding: 40px 15px;
  }

  .page-getting-started-first-deposit__hero-title {
    font-size: 1.8em;
  }

  .page-getting-started-first-deposit__section-title {
    font-size: 1.6em;
  }

  .page-getting-started-first-deposit__button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-getting-started-first-deposit__feature-item,
  .page-getting-started-first-deposit__step-item,
  .page-getting-started-first-deposit__method-item,
  .page-getting-started-first-deposit__faq-item {
    padding: 20px;
  }

  .page-getting-started-first-deposit__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-getting-started-first-deposit__step-item {
    padding-top: 60px;
  }
}