.page-beginner-guide-first-deposit {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for readability on dark background */
  background-color: #1A202C;
}

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

.page-beginner-guide-first-deposit__hero {
  background: linear-gradient(135deg, #1A202C, #3A404C);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}

.page-beginner-guide-first-deposit__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-beginner-guide-first-deposit__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-beginner-guide-first-deposit__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #FFD700;
}

.page-beginner-guide-first-deposit__section--intro p,
.page-beginner-guide-first-deposit__section--methods p,
.page-beginner-guide-first-deposit__section--guide p,
.page-beginner-guide-first-deposit__section--tips p,
.page-beginner-guide-first-deposit__section--bonus p,
.page-beginner-guide-first-deposit__section--security p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #C0C0C0;
}

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

.page-beginner-guide-first-deposit__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-beginner-guide-first-deposit__btn--primary:hover {
  background-color: #E0B500;
  transform: translateY(-2px);
}

.page-beginner-guide-first-deposit__btn--secondary {
  background-color: #3A404C;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-beginner-guide-first-deposit__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-beginner-guide-first-deposit__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-beginner-guide-first-deposit__link:hover {
  color: #E0B500;
  text-decoration: underline;
}

.page-beginner-guide-first-deposit__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit__image--large {
  max-width: 90%;
}

.page-beginner-guide-first-deposit__image--small {
  max-width: 60%;
}

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

.page-beginner-guide-first-deposit__grid-item {
  background-color: #2A303C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-beginner-guide-first-deposit__grid-title {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit__grid-item p {
  color: #C0C0C0;
  font-size: 1em;
}

.page-beginner-guide-first-deposit__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.page-beginner-guide-first-deposit__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #C0C0C0;
}

.page-beginner-guide-first-deposit__list--bullet li::before {
  content: '\2022'; /* Unicode for bullet */
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  top: -2px;
}

.page-beginner-guide-first-deposit__list--checked li::before {
  content: '\2713'; /* Unicode for checkmark */
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1em;
  top: 0;
}

.page-beginner-guide-first-deposit__steps {
  margin-top: 50px;
}

.page-beginner-guide-first-deposit__step-item {
  background-color: #2A303C;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-beginner-guide-first-deposit__step-number {
  background-color: #FFD700;
  color: #1A202C;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit__step-title {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit__step-item p {
  color: #C0C0C0;
  font-size: 1.1em;
  max-width: 700px;
}

.page-beginner-guide-first-deposit__note {
  font-style: italic;
  text-align: center;
  margin-top: 40px;
  color: #909090;
}

.page-beginner-guide-first-deposit__accordion {
  margin-top: 40px;
}

.page-beginner-guide-first-deposit__accordion-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.page-beginner-guide-first-deposit__accordion-header {
  background-color: #3A404C;
  color: #FFD700;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-beginner-guide-first-deposit__accordion-header:hover,
.page-beginner-guide-first-deposit__accordion-header.active {
  background-color: #4A505C;
}

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

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

.page-beginner-guide-first-deposit__accordion-content {
  background-color: #2A303C;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-beginner-guide-first-deposit__accordion-content p {
  color: #C0C0C0;
  padding: 15px 0;
  margin: 0;
}

.page-beginner-guide-first-deposit__cta {
  background: linear-gradient(90deg, #1A202C, #3A404C);
  padding: 80px 0;
  text-align: center;
  color: #E0E0E0;
}

.page-beginner-guide-first-deposit__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-beginner-guide-first-deposit__hero {
    padding: 80px 0;
  }

  .page-beginner-guide-first-deposit__hero-title {
    font-size: 2.5em;
  }

  .page-beginner-guide-first-deposit__hero-description {
    font-size: 1em;
  }

  .page-beginner-guide-first-deposit__section-title {
    font-size: 2em;
  }

  .page-beginner-guide-first-deposit__grid {
    grid-template-columns: 1fr;
  }

  .page-beginner-guide-first-deposit__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }

  .page-beginner-guide-first-deposit__step-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-first-deposit__cta-title {
    font-size: 2em;
  }

  .page-beginner-guide-first-deposit__cta-description {
    font-size: 1.1em;
  }
  .page-beginner-guide-first-deposit__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-beginner-guide-first-deposit__image--small {
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-first-deposit__hero-title {
    font-size: 2em;
  }

  .page-beginner-guide-first-deposit__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-first-deposit__grid-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-first-deposit__step-title {
    font-size: 1.3em;
  }

  .page-beginner-guide-first-deposit__cta-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-first-deposit__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-beginner-guide-first-deposit__accordion-content p {
    padding: 10px 0;
  }
  .page-beginner-guide-first-deposit__image--small {
    max-width: 100%;
  }
}