/* style/beginner-guide-registration.css */

/* Base styles for the page */
.page-beginner-guide-registration {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-beginner-guide-registration__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-beginner-guide-registration__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #0a0a0a; /* Ensure hero section has a background */
  color: #ffffff;
  overflow: hidden;
}

.page-beginner-guide-registration__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-beginner-guide-registration__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-beginner-guide-registration__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

.page-beginner-guide-registration__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-beginner-guide-registration__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-beginner-guide-registration__highlight-text {
  color: #26A9E0;
  font-weight: bold;
}

.page-beginner-guide-registration__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-beginner-guide-registration__btn-primary,
.page-beginner-guide-registration__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-beginner-guide-registration__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-beginner-guide-registration__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-beginner-guide-registration__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-beginner-guide-registration__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-beginner-guide-registration__section {
  padding: 60px 0;
  background-color: #0a0a0a; /* Dark background for sections */
  color: #ffffff;
}

.page-beginner-guide-registration__introduction {
  text-align: center;
}

.page-beginner-guide-registration__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-beginner-guide-registration__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

.page-beginner-guide-registration__why-join {
  background-color: #1a1a1a;
}

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

.page-beginner-guide-registration__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff; /* Light text for dark card background */
}

.page-beginner-guide-registration__feature-card:hover {
  transform: translateY(-5px);
}

.page-beginner-guide-registration__card-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-beginner-guide-registration__card-description {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-beginner-guide-registration__card-description a {
  color: #26A9E0;
  text-decoration: none;
}

.page-beginner-guide-registration__card-description a:hover {
  text-decoration: underline;
}

.page-beginner-guide-registration__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-beginner-guide-registration__registration-guide {
  background-color: #0a0a0a;
}

.page-beginner-guide-registration__step-item {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-beginner-guide-registration__step-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-beginner-guide-registration__step-description {
  font-size: 1.05em;
  color: #f0f0f0;
  margin-bottom: 25px;
  max-width: 800px;
  text-align: justify;
}

.page-beginner-guide-registration__step-list {
  list-style-type: disc;
  text-align: left;
  margin: 0 auto 25px auto;
  padding-left: 20px;
  color: #f0f0f0;
  max-width: 800px;
}

.page-beginner-guide-registration__step-list li {
  margin-bottom: 10px;
}

.page-beginner-guide-registration__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-beginner-guide-registration__margin-top {
  margin-top: 60px;
}

.page-beginner-guide-registration__promotions-new-members {
  background-color: #1a1a1a;
}

.page-beginner-guide-registration__promotion-list {
  list-style-type: disc;
  margin: 25px auto 40px auto;
  padding-left: 20px;
  color: #f0f0f0;
  max-width: 800px;
  text-align: left;
}

.page-beginner-guide-registration__promotion-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-beginner-guide-registration__promotion-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
  min-width: 200px;
  min-height: 200px;
}

.page-beginner-guide-registration__faq-section {
  background-color: #0a0a0a;
}

.page-beginner-guide-registration__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-registration__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-beginner-guide-registration__faq-item summary {
  list-style: none; /* Remove default marker */
}

.page-beginner-guide-registration__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit */
}

.page-beginner-guide-registration__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-beginner-guide-registration__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-beginner-guide-registration__faq-qtext {
  flex-grow: 1;
}

.page-beginner-guide-registration__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #ffffff;
}

.page-beginner-guide-registration__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #f0f0f0;
  text-align: justify;
}

.page-beginner-guide-registration__faq-answer p {
  margin-bottom: 0;
}

.page-beginner-guide-registration__faq-answer a {
  color: #26A9E0;
  text-decoration: none;
}

.page-beginner-guide-registration__faq-answer a:hover {
  text-decoration: underline;
}

.page-beginner-guide-registration__conclusion {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-beginner-guide-registration {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-beginner-guide-registration__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-beginner-guide-registration__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-beginner-guide-registration__hero-content {
    padding: 15px;
  }

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

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

  .page-beginner-guide-registration__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-beginner-guide-registration__btn-primary,
  .page-beginner-guide-registration__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-beginner-guide-registration__section {
    padding: 40px 0;
  }

  .page-beginner-guide-registration__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-beginner-guide-registration__paragraph,
  .page-beginner-guide-registration__card-description,
  .page-beginner-guide-registration__step-description,
  .page-beginner-guide-registration__step-list,
  .page-beginner-guide-registration__promotion-list,
  .page-beginner-guide-registration__faq-answer {
    font-size: 0.95em;
  }

  .page-beginner-guide-registration__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-beginner-guide-registration__card-title {
    font-size: 1.2em;
  }

  .page-beginner-guide-registration__step-title {
    font-size: 1.5em;
  }

  /* Mobile image responsiveness */
  .page-beginner-guide-registration img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-beginner-guide-registration__hero-image-wrapper,
  .page-beginner-guide-registration__container,
  .page-beginner-guide-registration__feature-card,
  .page-beginner-guide-registration__step-item,
  .page-beginner-guide-registration__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }

  .page-beginner-guide-registration__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-beginner-guide-registration__faq-toggle {
    font-size: 1.3em;
  }

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