/* style/beginner-guide-first-registration-deposit.css */

.page-beginner-guide-first-registration-deposit {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
}

.page-beginner-guide-first-registration-deposit__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-beginner-guide-first-registration-deposit__hero-section {
  background: linear-gradient(135deg, #1A202C, #3d0d0d);
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.page-beginner-guide-first-registration-deposit__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E53E3E; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-first-registration-deposit__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e5dfd3;
}

.page-beginner-guide-first-registration-deposit__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-beginner-guide-first-registration-deposit__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(229, 62, 62, 0.2);
}

.page-beginner-guide-first-registration-deposit__section:last-of-type {
  border-bottom: none;
}

.page-beginner-guide-first-registration-deposit__section-title {
  font-size: 2.5em;
  color: #E53E3E;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-beginner-guide-first-registration-deposit__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #e5dfd3;
}

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

.page-beginner-guide-first-registration-deposit__feature-item {
  background-color: #2D3748;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-first-registration-deposit__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-first-registration-deposit__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(229, 62, 62, 0.5));
}

.page-beginner-guide-first-registration-deposit__feature-title {
  font-size: 1.5em;
  color: #E53E3E;
  margin-bottom: 15px;
}

.page-beginner-guide-first-registration-deposit__feature-description {
  color: #e5dfd3;
  font-size: 0.95em;
}

.page-beginner-guide-first-registration-deposit__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

.page-beginner-guide-first-registration-deposit__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  background-color: #2D3748;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  position: relative;
}

.page-beginner-guide-first-registration-deposit__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E53E3E;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #1A202C;
  box-shadow: 0 0 15px rgba(229, 62, 62, 0.6);
}

.page-beginner-guide-first-registration-deposit__step-title {
  font-size: 2em;
  color: #E53E3E;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-beginner-guide-first-registration-deposit__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 2px solid rgba(229, 62, 62, 0.5);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-registration-deposit__step-description {
  font-size: 1em;
  color: #e5dfd3;
  margin-bottom: 20px;
}

.page-beginner-guide-first-registration-deposit__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-beginner-guide-first-registration-deposit__promo-card {
  background-color: #2D3748;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-first-registration-deposit__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-first-registration-deposit__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #E53E3E;
}

.page-beginner-guide-first-registration-deposit__promo-title {
  font-size: 1.6em;
  color: #E53E3E;
  padding: 20px 20px 10px 20px;
}

.page-beginner-guide-first-registration-deposit__promo-description {
  font-size: 0.95em;
  color: #e5dfd3;
  padding: 0 20px 20px 20px;
}

.page-beginner-guide-first-registration-deposit__promo-note {
  text-align: center;
  font-style: italic;
  margin-top: 40px;
  color: #a0a0a0;
}

.page-beginner-guide-first-registration-deposit__safety-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-beginner-guide-first-registration-deposit__safety-list li {
  background-color: #2D3748;
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  color: #e5dfd3;
  font-size: 1.1em;
}

.page-beginner-guide-first-registration-deposit__safety-list li strong {
  color: #E53E3E;
}

.page-beginner-guide-first-registration-deposit__list-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  filter: drop-shadow(0 0 3px rgba(229, 62, 62, 0.4));
}

.page-beginner-guide-first-registration-deposit__faq-item {
  background-color: #2D3748;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-beginner-guide-first-registration-deposit__faq-question {
  font-size: 1.3em;
  color: #E53E3E;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-beginner-guide-first-registration-deposit__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-beginner-guide-first-registration-deposit__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-beginner-guide-first-registration-deposit__faq-answer {
  font-size: 1em;
  color: #e5dfd3;
  padding: 0 25px 20px 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-beginner-guide-first-registration-deposit__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

.page-beginner-guide-first-registration-deposit__center-cta {
  text-align: center;
  margin-top: 40px;
}

.page-beginner-guide-first-registration-deposit__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-beginner-guide-first-registration-deposit__btn--primary {
  background-color: #E53E3E;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
}

.page-beginner-guide-first-registration-deposit__btn--primary:hover {
  background-color: #c02a2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 62, 62, 0.6);
}

.page-beginner-guide-first-registration-deposit__btn--secondary {
  background-color: transparent;
  color: #E53E3E;
  border: 2px solid #E53E3E;
  box-shadow: 0 2px 10px rgba(229, 62, 62, 0.2);
}

.page-beginner-guide-first-registration-deposit__btn--secondary:hover {
  background-color: rgba(229, 62, 62, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
}

.page-beginner-guide-first-registration-deposit__btn--inline {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
}

.page-beginner-guide-first-registration-deposit__text-link {
    color: #E53E3E;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-beginner-guide-first-registration-deposit__text-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-beginner-guide-first-registration-deposit__hero-title {
    font-size: 2.5em;
  }
  .page-beginner-guide-first-registration-deposit__hero-description {
    font-size: 1em;
  }
  .page-beginner-guide-first-registration-deposit__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-beginner-guide-first-registration-deposit__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-beginner-guide-first-registration-deposit__section-title {
    font-size: 2em;
  }
  .page-beginner-guide-first-registration-deposit__step-item {
    padding: 30px 20px;
  }
  .page-beginner-guide-first-registration-deposit__step-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-first-registration-deposit__promo-image {
    height: 150px;
  }
  .page-beginner-guide-first-registration-deposit__promo-title {
    font-size: 1.4em;
  }
  .page-beginner-guide-first-registration-deposit__safety-list li {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-beginner-guide-first-registration-deposit__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-beginner-guide-first-registration-deposit__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-first-registration-deposit__hero-title {
    font-size: 2em;
  }
  .page-beginner-guide-first-registration-deposit__section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-first-registration-deposit__btn {
    width: 90%;
  }
  .page-beginner-guide-first-registration-deposit__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    top: -20px;
  }
  .page-beginner-guide-first-registration-deposit__step-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-first-registration-deposit__feature-item,
  .page-beginner-guide-first-registration-deposit__promo-card {
    padding: 20px;
  }
}