/* style/beginner-guide-first-deposit.css */
.page-beginner-guide-first-deposit {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-beginner-guide-first-deposit .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-beginner-guide-first-deposit .hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-beginner-guide-first-deposit .hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #eee;
}

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

.page-beginner-guide-first-deposit .btn-primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red */
}

.page-beginner-guide-first-deposit .btn-primary:hover {
  background-color: #e6c200;
  color: #6a0000;
  transform: translateY(-2px);
}

.page-beginner-guide-first-deposit .btn-secondary {
  background-color: #8B0000; /* Dark Red */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-beginner-guide-first-deposit .btn-secondary:hover {
  background-color: #6a0000;
  color: #ffe033;
  transform: translateY(-2px);
}

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

.page-beginner-guide-first-deposit .section-title {
  font-size: 2em;
  color: #8B0000; /* Dark Red */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-beginner-guide-first-deposit .section-title .highlight {
  color: #FFD700;
}

.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 .intro-text p,
.page-beginner-guide-first-deposit .promotions-section p,
.page-beginner-guide-first-deposit .important-notes p,
.page-beginner-guide-first-deposit .final-cta p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  color: #555;
}

.page-beginner-guide-first-deposit .intro-text .content-image,
.page-beginner-guide-first-deposit .promotions-section .content-image,
.page-beginner-guide-first-deposit .important-notes .content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-first-deposit .deposit-methods {
  margin-top: 60px;
}

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

.page-beginner-guide-first-deposit .method-card {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  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.1);
}

.page-beginner-guide-first-deposit .method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit .method-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-beginner-guide-first-deposit .method-card p {
  font-size: 0.95em;
  color: #666;
  text-align: center;
}

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

.page-beginner-guide-first-deposit .guide-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 20px;
}

.page-beginner-guide-first-deposit .step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #8B0000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit .step-content h3 {
  font-size: 1.5em;
  color: #8B0000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-beginner-guide-first-deposit .step-content p {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 15px;
  text-align: left;
}

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

.page-beginner-guide-first-deposit .step-content p a:hover {
  color: #FFD700;
}

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

.page-beginner-guide-first-deposit .promotions-section {
  background-color: #fcf8e3;
  padding: 50px 0;
  margin-top: 60px;
  border-radius: 10px;
  border: 1px dashed #FFD700;
  text-align: center;
}

.page-beginner-guide-first-deposit .promotions-section ul {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 700px;
  text-align: left;
}

.page-beginner-guide-first-deposit .promotions-section ul li {
  background-color: #fff;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #333;
}

.page-beginner-guide-first-deposit .promotions-section ul li strong {
  color: #8B0000;
}

.page-beginner-guide-first-deposit .important-notes {
  margin-top: 60px;
}

.page-beginner-guide-first-deposit .important-notes ul {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
}

.page-beginner-guide-first-deposit .important-notes ul li {
  background-color: #fff;
  border-left: 5px solid #8B0000;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #333;
}

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

.page-beginner-guide-first-deposit .faq-section {
  margin-top: 60px;
  background-color: #fcfcfc;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-first-deposit .faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.page-beginner-guide-first-deposit .faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-beginner-guide-first-deposit .faq-question {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 10px;
  cursor: pointer;
  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.2em;
  font-weight: bold;
  color: #FFD700;
}

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

.page-beginner-guide-first-deposit .faq-answer {
  font-size: 1.0em;
  color: #555;
  display: none;
  padding-left: 20px;
  margin-top: 10px;
}

.page-beginner-guide-first-deposit .faq-answer.active {
  display: block;
}

.page-beginner-guide-first-deposit .final-cta {
  text-align: center;
  margin-top: 80px;
  padding: 50px;
  background-color: #8B0000;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit .final-cta .section-title {
  color: #FFD700;
}

.page-beginner-guide-first-deposit .final-cta .section-title::after {
  background-color: #fff;
}

.page-beginner-guide-first-deposit .final-cta p {
  color: #eee;
}

.page-beginner-guide-first-deposit .keyword {
  font-weight: bold;
  color: #8B0000;
}

.page-beginner-guide-first-deposit .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .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-title {
    font-size: 1.7em;
  }

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

  .page-beginner-guide-first-deposit .guide-step {
    flex-direction: column;
    align-items: center;
  }

  .page-beginner-guide-first-deposit .step-number {
    margin-bottom: 15px;
  }

  .page-beginner-guide-first-deposit .step-content h3,
  .page-beginner-guide-first-deposit .step-content p {
    text-align: center;
  }

  .page-beginner-guide-first-deposit .promotions-section ul,
  .page-beginner-guide-first-deposit .important-notes ul {
    text-align: center;
  }
  .page-beginner-guide-first-deposit .promotions-section ul li,
  .page-beginner-guide-first-deposit .important-notes ul li {
    border-left: none;
    border-top: 5px solid #FFD700;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-first-deposit .hero-section {
    padding: 50px 0;
  }

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

  .page-beginner-guide-first-deposit .btn {
    padding: 10px 20px;
    font-size: 1em;
  }

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