.page-beginner-guide-zero-basis-tutorial {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

.page-beginner-guide-zero-basis-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-beginner-guide-zero-basis-tutorial__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #3a4d6d 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-zero-basis-tutorial__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  animation: page-beginner-guide-zero-basis-tutorial__pulse 4s infinite ease-in-out;
}

.page-beginner-guide-zero-basis-tutorial__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: rgba(10, 25, 47, 0.2);
  border-radius: 50%;
  animation: page-beginner-guide-zero-basis-tutorial__pulse 4s infinite ease-in-out reverse;
}

@keyframes page-beginner-guide-zero-basis-tutorial__pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0.5; }
  100% { transform: scale(1); opacity: 0.8; }
}

.page-beginner-guide-zero-basis-tutorial__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-zero-basis-tutorial__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-beginner-guide-zero-basis-tutorial__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-beginner-guide-zero-basis-tutorial__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-beginner-guide-zero-basis-tutorial__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-beginner-guide-zero-basis-tutorial__content-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-beginner-guide-zero-basis-tutorial__content-section:last-of-type {
  border-bottom: none;
}

.page-beginner-guide-zero-basis-tutorial__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-beginner-guide-zero-basis-tutorial__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-zero-basis-tutorial__sub-section-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-beginner-guide-zero-basis-tutorial p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-beginner-guide-zero-basis-tutorial ul,
.page-beginner-guide-zero-basis-tutorial ol {
  margin-bottom: 20px;
  padding-left: 25px;
  color: #E0E0E0;
}

.page-beginner-guide-zero-basis-tutorial ul li,
.page-beginner-guide-zero-basis-tutorial ol li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-beginner-guide-zero-basis-tutorial ul li::before {
  content: '•';
  color: #FFD700;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.page-beginner-guide-zero-basis-tutorial ol li::marker {
  color: #FFD700;
  font-weight: bold;
}

.page-beginner-guide-zero-basis-tutorial__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-zero-basis-tutorial__inline-link {
  color: #FFD700; /* Gold for inline links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-beginner-guide-zero-basis-tutorial__inline-link:hover {
  color: #e6c200; /* Slightly darker gold on hover */
  text-decoration: underline;
}

.page-beginner-guide-zero-basis-tutorial__faq-item {
  background-color: #1a2c4a; /* Slightly lighter dark blue for FAQ item background */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-zero-basis-tutorial__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
}

.page-beginner-guide-zero-basis-tutorial__faq-answer {
  font-size: 1.05em;
  color: #C0C0C0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-beginner-guide-zero-basis-tutorial__hero-title {
    font-size: 2.5em;
  }

  .page-beginner-guide-zero-basis-tutorial__hero-subtitle {
    font-size: 1.2em;
  }

  .page-beginner-guide-zero-basis-tutorial__section-title {
    font-size: 2em;
  }

  .page-beginner-guide-zero-basis-tutorial__sub-section-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-zero-basis-tutorial p,
  .page-beginner-guide-zero-basis-tutorial ul li,
  .page-beginner-guide-zero-basis-tutorial ol li {
    font-size: 1em;
  }

  .page-beginner-guide-zero-basis-tutorial__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

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

  .page-beginner-guide-zero-basis-tutorial__hero-subtitle {
    font-size: 1em;
  }

  .page-beginner-guide-zero-basis-tutorial__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-zero-basis-tutorial__sub-section-title {
    font-size: 1.3em;
  }

  .page-beginner-guide-zero-basis-tutorial__cta-button {
    width: 100%;
    padding: 15px 0;
  }
}