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

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

.page-beginner-guide__section--dark {
  background-color: #222222;
  padding: 60px 0;
}

.page-beginner-guide__section--light {
  background-color: #1a1a1a;
  padding: 60px 0;
}

.page-beginner-guide__hero-section {
  background: linear-gradient(135deg, #FFD700, #1E90FF); /* Gold to Dodger Blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #1a1a1a; /* Dark text on light gradient */
}

.page-beginner-guide__hero-title {
  font-size: 3.5em;
  color: #1a1a1a; /* Dark text for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  font-weight: bold;
}

.page-beginner-guide__hero-subtitle {
  font-size: 1.3em;
  color: #333333; /* Slightly lighter dark text */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide__hero-image {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  opacity: 0.2;
  z-index: 0;
}

.page-beginner-guide__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-beginner-guide__section-subtitle {
  font-size: 1.8em;
  color: #1E90FF; /* Dodger Blue for subtitles */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-beginner-guide__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-beginner-guide__highlight {
  color: #FFD700;
}

.page-beginner-guide__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-beginner-guide__list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-beginner-guide__icon {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 1.2em;
}

.page-beginner-guide__icon--check::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
}

.page-beginner-guide__icon--info::before {
  content: 'ℹ';
  color: #1E90FF; /* Blue info icon */
}

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

.page-beginner-guide__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1a1a1a; /* Dark text on gold */
  border: 2px solid #FFD700;
  margin-right: 15px;
}

.page-beginner-guide__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-beginner-guide__btn--secondary {
  background-color: #1E90FF; /* Dodger Blue button */
  color: #ffffff; /* White text on blue */
  border: 2px solid #1E90FF;
}

.page-beginner-guide__btn--secondary:hover {
  background-color: #1565b3;
  border-color: #1565b3;
}

/* Step Grid */
.page-beginner-guide__step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide__step-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

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

.page-beginner-guide__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-beginner-guide__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-beginner-guide__step-description {
  font-size: 1em;
  color: #cccccc;
}

/* Guide Card Grid */
.page-beginner-guide__guide-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide__guide-card {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-beginner-guide__guide-card-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-beginner-guide__guide-card-title a {
  color: #1E90FF;
  text-decoration: none;
}

.page-beginner-guide__guide-card-title a:hover {
  text-decoration: underline;
}

.page-beginner-guide__guide-card-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FAQ Accordion */
.page-beginner-guide__faq-accordion {
  margin-top: 30px;
}

.page-beginner-guide__faq-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-beginner-guide__faq-question {
  background-color: #333333;
  color: #FFD700; /* Gold for FAQ question */
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-beginner-guide__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #1E90FF;
}

.page-beginner-guide__faq-question.active::after {
  content: '-';
}

.page-beginner-guide__faq-question:hover {
  background-color: #444444;
}

.page-beginner-guide__faq-answer {
  padding: 0 25px;
  background-color: #2a2a2a;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-beginner-guide__faq-answer p {
  padding: 15px 0;
  color: #cccccc;
  font-size: 1em;
}

/* CTA Section */
.page-beginner-guide__cta-content {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide__cta-content .page-beginner-guide__section-title {
  color: #FFD700;
}

.page-beginner-guide__cta-buttons {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.page-beginner-guide__cta-image {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  opacity: 0.1;
  z-index: 0;
}

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

  .page-beginner-guide__hero-subtitle {
    font-size: 1.1em;
  }

  .page-beginner-guide__section-title {
    font-size: 2em;
  }

  .page-beginner-guide__section-subtitle {
    font-size: 1.5em;
  }

  .page-beginner-guide__step-grid,
  .page-beginner-guide__guide-card-grid {
    grid-template-columns: 1fr;
  }

  .page-beginner-guide__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  
  .page-beginner-guide__btn--primary {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide__hero-section {
    padding: 80px 0;
  }

  .page-beginner-guide__hero-title {
    font-size: 2em;
  }

  .page-beginner-guide__hero-subtitle {
    font-size: 1em;
  }

  .page-beginner-guide__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide__btn {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .page-beginner-guide__cta-buttons .page-beginner-guide__btn--primary {
    margin-bottom: 15px;
  }
}