.page-beginner-guide-first-deposit {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Main dark charcoal 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-section {
  background: linear-gradient(135deg, #1A202C 0%, #333C4A 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-beginner-guide-first-deposit .hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-beginner-guide-first-deposit .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-beginner-guide-first-deposit .btn-primary {
  background-color: #FFD700; /* Gold primary button */
  color: #1A202C;
}

.page-beginner-guide-first-deposit .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit .btn-secondary {
  background-color: #333C4A;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-beginner-guide-first-deposit .btn-secondary:hover {
  background-color: #444E5B;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit .btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-beginner-guide-first-deposit .content-section {
  padding: 60px 0;
}

.page-beginner-guide-first-deposit .intro-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #C0C0C0;
}

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

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

.page-beginner-guide-first-deposit .section-description {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 50px;
  color: #C0C0C0;
}

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

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

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

.page-beginner-guide-first-deposit .feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-beginner-guide-first-deposit .feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

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

.page-beginner-guide-first-deposit .step-by-step-guide {
  margin-top: 50px;
}

.page-beginner-guide-first-deposit .step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background-color: #2A313C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit .step-number {
  background-color: #FFD700;
  color: #1A202C;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-right: 25px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-beginner-guide-first-deposit .step-content h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit .step-content p {
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit .step-content p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-beginner-guide-first-deposit .step-content p a:hover {
  text-decoration: underline;
}

.page-beginner-guide-first-deposit .step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-beginner-guide-first-deposit .method-card {
  background-color: #2A313C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-beginner-guide-first-deposit .method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-beginner-guide-first-deposit .method-card h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit .method-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-beginner-guide-first-deposit .method-card ul li {
  margin-bottom: 10px;
  color: #C0C0C0;
  line-height: 1.5;
}

.page-beginner-guide-first-deposit .method-card ul li strong {
  color: #FFD700;
}

.page-beginner-guide-first-deposit .important-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-beginner-guide-first-deposit .important-notes ul li {
  background-color: #2A313C;
  padding: 15px 25px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  color: #E0E0E0;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit .important-notes ul li strong {
  color: #FFD700;
}

.page-beginner-guide-first-deposit .offer-highlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #2A313C;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  margin-top: 50px;
}

.page-beginner-guide-first-deposit .offer-image {
  flex: 1 1 40%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-right: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit .offer-details {
  flex: 1 1 55%;
}

.page-beginner-guide-first-deposit .offer-details h3 {
  color: #FFD700;
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit .offer-details p {
  color: #C0C0C0;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-beginner-guide-first-deposit .call-to-action-offer {
  font-style: italic;
  color: #FFD700;
  font-weight: bold;
}

.page-beginner-guide-first-deposit .faq-container {
  margin-top: 50px;
}

.page-beginner-guide-first-deposit .faq-item {
  background-color: #2A313C;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit .faq-toggle {
  display: none;
}

.page-beginner-guide-first-deposit .faq-question {
  display: block;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.3em;
  color: #FFD700;
  font-weight: bold;
  background-color: #333C4A;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-beginner-guide-first-deposit .faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

.page-beginner-guide-first-deposit .faq-toggle:checked + .faq-question::after {
  content: '-';
}

.page-beginner-guide-first-deposit .faq-toggle:checked + .faq-question {
  background-color: #444E5B;
}

.page-beginner-guide-first-deposit .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #2A313C;
  color: #E0E0E0;
}

.page-beginner-guide-first-deposit .faq-toggle:checked ~ .faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-beginner-guide-first-deposit .faq-answer p {
  margin: 0;
  color: #C0C0C0;
}

.page-beginner-guide-first-deposit .final-cta {
  text-align: center;
  background-color: #333C4A;
  padding: 60px 30px;
  border-radius: 10px;
  margin-top: 80px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-first-deposit .final-cta-title {
  color: #FFD700;
  font-size: 3em;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-first-deposit .final-cta-description {
  color: #E0E0E0;
  font-size: 1.3em;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .page-beginner-guide-first-deposit .hero-title {
    font-size: 2.8em;
  }
  .page-beginner-guide-first-deposit .hero-subtitle {
    font-size: 1.2em;
  }
  .page-beginner-guide-first-deposit .section-title {
    font-size: 2em;
  }
  .page-beginner-guide-first-deposit .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-beginner-guide-first-deposit .step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .page-beginner-guide-first-deposit .offer-highlight {
    flex-direction: column;
  }
  .page-beginner-guide-first-deposit .offer-image {
    margin-right: 0;
    margin-bottom: 30px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-first-deposit .hero-title {
    font-size: 2.2em;
  }
  .page-beginner-guide-first-deposit .hero-subtitle {
    font-size: 1em;
  }
  .page-beginner-guide-first-deposit .section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-first-deposit .feature-grid, .page-beginner-guide-first-deposit .payment-methods {
    grid-template-columns: 1fr;
  }
  .page-beginner-guide-first-deposit .step-content h3 {
    font-size: 1.5em;
  }
  .page-beginner-guide-first-deposit .faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-beginner-guide-first-deposit .faq-question::after {
    right: 20px;
  }
  .page-beginner-guide-first-deposit .final-cta-title {
    font-size: 2.2em;
  }
  .page-beginner-guide-first-deposit .final-cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-first-deposit .hero-section, .page-beginner-guide-first-deposit .content-section, .page-beginner-guide-first-deposit .final-cta {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-beginner-guide-first-deposit .hero-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-first-deposit .btn {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-beginner-guide-first-deposit .btn-large {
    padding: 15px 25px;
    font-size: 1em;
  }
  .page-beginner-guide-first-deposit .section-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-first-deposit .step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.5em;
  }
  .page-beginner-guide-first-deposit .step-content h3 {
    font-size: 1.3em;
  }
  .page-beginner-guide-first-deposit .offer-details h3 {
    font-size: 1.6em;
  }
  .page-beginner-guide-first-deposit .final-cta-title {
    font-size: 1.8em;
  }
}