/* style/beginner-guide-common-faqs.css */
.page-beginner-guide-common-faqs {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light grey for general text on dark backgrounds */
  background-color: #1a1a1a; /* Dark background */
}

.page-beginner-guide-common-faqs__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-beginner-guide-common-faqs__hero {
  background: linear-gradient(135deg, #FF0055, #00FFEE); /* Neon gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff; /* White text on gradient */
}

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

.page-beginner-guide-common-faqs__hero > * {
  position: relative;
  z-index: 1;
}

.page-beginner-guide-common-faqs__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 255, 238, 0.7), 0 0 20px rgba(255, 0, 85, 0.7);
  font-weight: 700;
}

.page-beginner-guide-common-faqs__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-beginner-guide-common-faqs__cta-button {
  display: inline-block;
  background-color: #FF0055; /* Main color */
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #FF0055;
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
}

.page-beginner-guide-common-faqs__cta-button:hover {
  background-color: #00FFEE; /* Accent color */
  border-color: #00FFEE;
  box-shadow: 0 0 20px rgba(0, 255, 238, 0.7);
  transform: translateY(-3px) scale(1.02);
}

.page-beginner-guide-common-faqs__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-beginner-guide-common-faqs__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-beginner-guide-common-faqs__faq-item {
  background-color: #2a2a2a; /* Slightly lighter dark background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 0, 85, 0.2);
}

.page-beginner-guide-common-faqs__faq-question {
  font-size: 1.5em;
  color: #FF0055; /* Main color for questions */
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-bottom: 1px solid rgba(255, 0, 85, 0.1);
}

.page-beginner-guide-common-faqs__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #00FFEE; /* Accent color for icon */
  transition: transform 0.3s ease;
}

.page-beginner-guide-common-faqs__faq-item.active .page-beginner-guide-common-faqs__faq-question {
  background-color: #3a3a3a;
  color: #00FFEE; /* Accent color when active */
}

.page-beginner-guide-common-faqs__faq-item.active .page-beginner-guide-common-faqs__faq-question::after {
  content: '-';
  transform: rotate(180deg);
  color: #FF0055; /* Main color when active */
}

.page-beginner-guide-common-faqs__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #333; /* Darker background for answer */
  color: #e0e0e0; /* Lighter text for answer */
}

.page-beginner-guide-common-faqs__faq-item.active .page-beginner-guide-common-faqs__faq-answer {
  max-height: 1000px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-beginner-guide-common-faqs__faq-answer p {
  margin-bottom: 15px;
}

.page-beginner-guide-common-faqs__faq-answer ol,
.page-beginner-guide-common-faqs__faq-answer ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-beginner-guide-common-faqs__faq-answer li {
  margin-bottom: 8px;
}

.page-beginner-guide-common-faqs__text-link {
  color: #00FFEE; /* Accent color for text links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-beginner-guide-common-faqs__text-link:hover {
  color: #FF0055; /* Main color on hover */
  text-decoration: underline;
}

.page-beginner-guide-common-faqs__cta-bottom {
  background-color: #2a2a2a;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 255, 238, 0.2);
}

.page-beginner-guide-common-faqs__cta-title {
  font-size: 2.5em;
  color: #FF0055;
  margin-bottom: 20px;
}

.page-beginner-guide-common-faqs__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.page-beginner-guide-common-faqs__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-beginner-guide-common-faqs__cta-button--secondary {
  background-color: transparent;
  border-color: #00FFEE;
  color: #00FFEE;
  box-shadow: 0 0 15px rgba(0, 255, 238, 0.5);
}

.page-beginner-guide-common-faqs__cta-button--secondary:hover {
  background-color: #00FFEE;
  color: #1a1a1a;
  box-shadow: 0 0 20px rgba(0, 255, 238, 0.9);
}

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

  .page-beginner-guide-common-faqs__subtitle {
    font-size: 1em;
  }

  .page-beginner-guide-common-faqs__faq-question {
    font-size: 1.2em;
    padding: 15px 20px;
  }

  .page-beginner-guide-common-faqs__faq-answer {
    padding: 15px 20px;
  }

  .page-beginner-guide-common-faqs__cta-title {
    font-size: 2em;
  }

  .page-beginner-guide-common-faqs__cta-description {
    font-size: 1em;
  }

  .page-beginner-guide-common-faqs__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-beginner-guide-common-faqs__cta-button {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-common-faqs__hero {
    padding: 60px 0;
  }

  .page-beginner-guide-common-faqs__title {
    font-size: 2em;
  }

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

  .page-beginner-guide-common-faqs__faq-question::after {
    font-size: 1.2em;
  }
}