.page-beginner-guide-first-deposit {
  font-family: 'Arial', sans-serif;
  color: #F5F5F5; /* Light grey for general text on dark background */
  background-color: #0A2E36; /* Main dark background */
  line-height: 1.6;
}

.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, #0A2E36 0%, #1a4a58 100%); /* Dark blue/green to slightly lighter */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-first-deposit__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #E0B400; /* Auxiliary gold for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.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__cta-button {
  display: inline-block;
  background-color: #E0B400; /* Auxiliary gold for buttons */
  color: #0A2E36; /* Dark text on gold button */
  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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit__cta-button:hover {
  background-color: #FFC800; /* Lighter gold on hover */
  transform: translateY(-2px);
}

.page-beginner-guide-first-deposit__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-beginner-guide-first-deposit__cta-button--wide {
  min-width: 300px;
}

.page-beginner-guide-first-deposit__section {
  padding: 80px 0;
  background-color: #0A2E36;
}

.page-beginner-guide-first-deposit__section:nth-of-type(even) {
  background-color: #1a4a58; /* Slightly lighter dark background for contrast */
}

.page-beginner-guide-first-deposit__section-title {
  font-size: 2.5em;
  color: #E0B400; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-beginner-guide-first-deposit__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #E0E0E0;
}

.page-beginner-guide-first-deposit__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-beginner-guide-first-deposit__content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.page-beginner-guide-first-deposit__text-content {
  flex: 1;
  padding-right: 20px;
}

.page-beginner-guide-first-deposit__text-content p {
  margin-bottom: 1em;
  font-size: 1.05em;
  color: #F5F5F5;
}

.page-beginner-guide-first-deposit__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-beginner-guide-first-deposit__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-beginner-guide-first-deposit__image-wrapper--center {
  display: block;
  text-align: center;
  margin-top: 40px;
}

.page-beginner-guide-first-deposit__highlight {
  color: #E0B400;
  font-weight: bold;
}

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

.page-beginner-guide-first-deposit__payment-item {
  background-color: #1a4a58; /* Darker shade for items */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-beginner-guide-first-deposit__payment-item:hover {
  transform: translateY(-5px);
  background-color: #2b5d6e;
}

.page-beginner-guide-first-deposit__payment-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(224, 180, 0, 0.5));
}

.page-beginner-guide-first-deposit__payment-title {
  font-size: 1.5em;
  color: #E0B400;
  margin-bottom: 10px;
}

.page-beginner-guide-first-deposit__payment-description {
  color: #CCCCCC;
  font-size: 0.95em;
}

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

.page-beginner-guide-first-deposit__step-guide {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.page-beginner-guide-first-deposit__step-item {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #1a4a58;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.page-beginner-guide-first-deposit__step-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-beginner-guide-first-deposit__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #E0B400;
  min-width: 80px;
  text-align: center;
  line-height: 1;
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: rgba(10, 46, 54, 0.8); /* Semi-transparent dark background for number */
  padding: 10px 20px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-first-deposit__step-item:nth-child(even) .page-beginner-guide-first-deposit__step-number {
  left: auto;
  right: 20px;
}

.page-beginner-guide-first-deposit__step-item h3 {
  font-size: 1.8em;
  color: #E0B400;
  margin-bottom: 15px;
  padding-left: 120px; /* Space for number */
}

.page-beginner-guide-first-deposit__step-item:nth-child(even) h3 {
  padding-left: 0;
  padding-right: 120px;
}

.page-beginner-guide-first-deposit__step-item p {
  color: #F5F5F5;
  font-size: 1.05em;
  flex: 2;
}

.page-beginner-guide-first-deposit__step-image {
  flex: 1;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit__important-notes .page-beginner-guide-first-deposit__checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-beginner-guide-first-deposit__important-notes .page-beginner-guide-first-deposit__checklist li {
  background-color: #1a4a58;
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #F5F5F5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 60px;
}

.page-beginner-guide-first-deposit__important-notes .page-beginner-guide-first-deposit__checklist li::before {
  content: '✔';
  color: #E0B400;
  font-size: 1.5em;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.page-beginner-guide-first-deposit__important-notes .page-beginner-guide-first-deposit__checklist li strong {
  color: #E0B400;
}

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

.page-beginner-guide-first-deposit__promo-item {
  background-color: #0A2E36;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid #E0B400;
}

.page-beginner-guide-first-deposit__promo-item:hover {
  transform: translateY(-8px);
  background-color: #1a4a58;
}

.page-beginner-guide-first-deposit__promo-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(224, 180, 0, 0.6));
}

.page-beginner-guide-first-deposit__promo-title {
  font-size: 1.6em;
  color: #E0B400;
  margin-bottom: 10px;
}

.page-beginner-guide-first-deposit__promo-description {
  color: #CCCCCC;
  font-size: 1em;
}

.page-beginner-guide-first-deposit__promo-callout {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  color: #E0E0E0;
}

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

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

.page-beginner-guide-first-deposit__game-item:hover {
  transform: scale(1.03);
}

.page-beginner-guide-first-deposit__game-image {
  width: 100%;
  max-width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit__game-title {
  font-size: 1.6em;
  color: #E0B400;
  margin-bottom: 10px;
}

.page-beginner-guide-first-deposit__game-description {
  color: #CCCCCC;
  font-size: 1em;
}

.page-beginner-guide-first-deposit__faq {
  background-color: #0A2E36;
}

.page-beginner-guide-first-deposit__faq-item {
  background-color: #1a4a58;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-beginner-guide-first-deposit__faq-item:hover {
  background-color: #2b5d6e;
}

.page-beginner-guide-first-deposit__faq-question {
  font-size: 1.25em;
  color: #E0B400;
  margin-bottom: 10px;
  position: relative;
  padding-right: 30px;
}

.page-beginner-guide-first-deposit__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #E0B400;
  transition: transform 0.3s ease;
}

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

.page-beginner-guide-first-deposit__faq-answer {
  color: #F5F5F5;
  font-size: 1.05em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-beginner-guide-first-deposit__faq-item.active .page-beginner-guide-first-deposit__faq-answer {
  max-height: 200px; /* Adjust based on expected content length */
  opacity: 1;
  margin-top: 15px;
}

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

.page-beginner-guide-first-deposit__inline-link:hover {
  color: #FFC800;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide-first-deposit__hero-title {
    font-size: 2.5em;
  }

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

  .page-beginner-guide-first-deposit__content-wrapper {
    flex-direction: column;
  }

  .page-beginner-guide-first-deposit__content-wrapper:nth-child(even) {
    flex-direction: column;
  }

  .page-beginner-guide-first-deposit__text-content {
    padding-right: 0;
  }

  .page-beginner-guide-first-deposit__step-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .page-beginner-guide-first-deposit__step-item:nth-child(even) {
    flex-direction: column;
  }

  .page-beginner-guide-first-deposit__step-number {
    position: static;
    margin: 0 auto 20px auto;
    transform: none;
  }

  .page-beginner-guide-first-deposit__step-item h3 {
    padding-left: 0;
    padding-right: 0;
  }

  .page-beginner-guide-first-deposit__step-item:nth-child(even) h3 {
    padding-left: 0;
    padding-right: 0;
  }
}

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

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

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

  .page-beginner-guide-first-deposit__section {
    padding: 60px 0;
  }

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

  .page-beginner-guide-first-deposit__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-beginner-guide-first-deposit__payment-grid,
  .page-beginner-guide-first-deposit__promo-grid,
  .page-beginner-guide-first-deposit__game-categories {
    grid-template-columns: 1fr;
  }

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

  .page-beginner-guide-first-deposit__step-image {
    max-width: 100%;
  }

  .page-beginner-guide-first-deposit__important-notes .page-beginner-guide-first-deposit__checklist li {
    padding-left: 20px;
    text-align: left;
  }

  .page-beginner-guide-first-deposit__important-notes .page-beginner-guide-first-deposit__checklist li::before {
    left: 10px;
    top: 15px;
    transform: none;
    font-size: 1.2em;
  }

  .page-beginner-guide-first-deposit__faq-question {
    font-size: 1.1em;
  }
}