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

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

.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, #007bff, #28a745);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-first-deposit__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  z-index: 0;
  opacity: 0.1;
}

.page-beginner-guide-first-deposit__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-beginner-guide-first-deposit__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.page-beginner-guide-first-deposit__cta-button {
  display: inline-block;
  background-color: #ff8400; /* Complementary color for emphasis */
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.page-beginner-guide-first-deposit__cta-button:hover {
  background-color: #e67300;
  transform: translateY(-3px);
}

.page-beginner-guide-first-deposit__section {
  padding: 60px 0;
  border-bottom: 1px solid #e9ecef;
}

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

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

.page-beginner-guide-first-deposit__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #28a745;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-beginner-guide-first-deposit__intro p,
.page-beginner-guide-first-deposit__why-deposit p,
.page-beginner-guide-first-deposit__step-by-step p,
.page-beginner-guide-first-deposit__payment-methods p,
.page-beginner-guide-first-deposit__important-tips p,
.page-beginner-guide-first-deposit__troubleshooting p,
.page-beginner-guide-first-deposit__responsible-gambling p,
.page-beginner-guide-first-deposit__conclusion p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-beginner-guide-first-deposit__intro strong,
.page-beginner-guide-first-deposit__step-by-step strong,
.page-beginner-guide-first-deposit__payment-methods strong {
  color: #007bff;
}

.page-beginner-guide-first-deposit__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

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

.page-beginner-guide-first-deposit__image--small {
  max-width: 300px;
}

.page-beginner-guide-first-deposit__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-beginner-guide-first-deposit__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-beginner-guide-first-deposit__feature-item:hover {
  transform: translateY(-5px);
}

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

.page-beginner-guide-first-deposit__steps-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.page-beginner-guide-first-deposit__steps-list li {
  background-color: #fff;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
  position: relative;
  padding-left: 80px;
}

.page-beginner-guide-first-deposit__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 30px;
  top: 30px;
  background-color: #28a745;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(40, 167, 69, 0.4);
}

.page-beginner-guide-first-deposit__steps-list h3 {
  font-size: 1.8em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-beginner-guide-first-deposit__steps-list ul {
  list-style: disc;
  margin-left: 25px;
  margin-top: 15px;
  color: #555;
}

.page-beginner-guide-first-deposit__steps-list ul li {
  background: none;
  box-shadow: none;
  padding: 5px 0;
  margin-bottom: 5px;
  position: static;
  padding-left: 0;
}

.page-beginner-guide-first-deposit__steps-list ul li::before {
  content: none;
}

.page-beginner-guide-first-deposit__mini-cta {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-beginner-guide-first-deposit__mini-cta:hover {
  background-color: #0056b3;
}

.page-beginner-guide-first-deposit__emphasized-text {
  font-size: 1.2em;
  font-weight: bold;
  color: #d9534f; /* A strong, contrasting red for warnings/emphasis */
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: #fcecec;
  border-radius: 8px;
  border: 1px solid #d9534f;
}

.page-beginner-guide-first-deposit__cta-button--bottom {
  margin-top: 50px;
  margin-bottom: 20px;
}

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

.page-beginner-guide-first-deposit__method-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-beginner-guide-first-deposit__method-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  border-bottom: 2px solid #28a745;
  padding-bottom: 10px;
}

.page-beginner-guide-first-deposit__method-item ul {
  list-style: disc;
  margin-left: 20px;
  margin-top: 15px;
  color: #555;
}

.page-beginner-guide-first-deposit__method-item ul li {
  margin-bottom: 8px;
}

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

.page-beginner-guide-first-deposit__tips-list {
  list-style: none;
  padding: 0;
}

.page-beginner-guide-first-deposit__tips-list li {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 25px;
  border-left: 5px solid #28a745;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-first-deposit__tips-list h3 {
  font-size: 1.4em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-beginner-guide-first-deposit__faq {
  margin-top: 30px;
}

.page-beginner-guide-first-deposit__faq-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
}

.page-beginner-guide-first-deposit__faq-question {
  font-size: 1.5em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-beginner-guide-first-deposit__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #28a745;
}

.page-beginner-guide-first-deposit__faq-item.active .page-beginner-guide-first-deposit__faq-question::after {
  content: '-';
}

.page-beginner-guide-first-deposit__faq-item p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 0;
}

.page-beginner-guide-first-deposit__responsible-gambling p {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-first-deposit__conclusion .page-beginner-guide-first-deposit__cta-button--final {
  margin-top: 40px;
  margin-bottom: 0;
  background-color: #28a745;
}

.page-beginner-guide-first-deposit__conclusion .page-beginner-guide-first-deposit__cta-button--final:hover {
  background-color: #1e7e34;
}

.text-highlight {
  color: #ff8400; /* Use a strong contrast for the brand name within titles */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide-first-deposit__hero-title {
    font-size: 2.5em;
  }
  .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__features-grid,
  .page-beginner-guide-first-deposit__method-grid {
    grid-template-columns: 1fr;
  }
  .page-beginner-guide-first-deposit__steps-list li {
    padding-left: 60px;
  }
  .page-beginner-guide-first-deposit__steps-list li::before {
    left: 15px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
}

@media (max-width: 576px) {
  .page-beginner-guide-first-deposit__hero-section {
    padding: 60px 0;
  }
  .page-beginner-guide-first-deposit__hero-title {
    font-size: 2em;
  }
  .page-beginner-guide-first-deposit__hero-subtitle {
    font-size: 1em;
  }
  .page-beginner-guide-first-deposit__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-beginner-guide-first-deposit__section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-first-deposit__intro p,
  .page-beginner-guide-first-deposit__why-deposit p,
  .page-beginner-guide-first-deposit__step-by-step p,
  .page-beginner-guide-first-deposit__payment-methods p,
  .page-beginner-guide-first-deposit__important-tips p,
  .page-beginner-guide-first-deposit__troubleshooting p,
  .page-beginner-guide-first-deposit__responsible-gambling p,
  .page-beginner-guide-first-deposit__conclusion p {
    font-size: 1em;
  }
  .page-beginner-guide-first-deposit__steps-list h3 {
    font-size: 1.5em;
  }
  .page-beginner-guide-first-deposit__method-title {
    font-size: 1.4em;
  }
  .page-beginner-guide-first-deposit__faq-question {
    font-size: 1.3em;
  }
  .page-beginner-guide-first-deposit__emphasized-text {
    font-size: 1em;
    padding: 15px;
  }
}