/* style/index-registration-process.css */
/* Body background color from shared.css: var(--background-color) which is #08160F */
/* Text colors will primarily be #F2FFF6 and #A7D9B8 for contrast */

.page-index-registration-process {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Main text color for dark background */
  background-color: #08160F; /* Ensure consistency if body background is overridden */
}

.page-index-registration-process__section {
  padding: 60px 20px;
  text-align: center;
}

.page-index-registration-process__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-index-registration-process__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-index-registration-process__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
}

.page-index-registration-process__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-index-registration-process__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-top: 30px;
  padding: 0 20px;
}

.page-index-registration-process__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-index-registration-process__tagline {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-index-registration-process__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-index-registration-process__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-index-registration-process__btn-primary:hover {
  opacity: 0.9;
}

.page-index-registration-process__introduction-section {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-index-registration-process__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
}

.page-index-registration-process__sub-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-index-registration-process__text-block {
  text-align: left;
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-index-registration-process__feature-list,
.page-index-registration-process__game-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-index-registration-process__feature-item,
.page-index-registration-process__game-item {
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
  position: relative;
  padding-left: 25px;
}

.page-index-registration-process__feature-item::before,
.page-index-registration-process__game-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
}

.page-index-registration-process__game-item a {
  color: #F2C14E; /* Gold */
  text-decoration: none;
}

.page-index-registration-process__game-item a:hover {
  text-decoration: underline;
}

.page-index-registration-process__steps-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  padding-bottom: 80px;
}

.page-index-registration-process__step-card {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-registration-process__step-title {
  font-size: 1.6em;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
}

.page-index-registration-process__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #2E7A4E; /* Border */
}

.page-index-registration-process__step-card p {
  color: #A7D9B8; /* Text Secondary */
  text-align: left;
}

.page-index-registration-process__next-steps-section {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-index-registration-process__faq-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-index-registration-process__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-index-registration-process__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-index-registration-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  list-style: none;
}

.page-index-registration-process__faq-question::-webkit-details-marker {
  display: none;
}

.page-index-registration-process__faq-qtext {
  flex-grow: 1;
}

.page-index-registration-process__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-index-registration-process__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-index-registration-process__cta-final-section {
  background-color: #08160F; /* Background */
  padding-bottom: 80px;
}

.page-index-registration-process__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #2E7A4E; /* Border */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-registration-process__main-title {
    font-size: 2.5em;
  }
  .page-index-registration-process__section-title {
    font-size: 2em;
  }
  .page-index-registration-process__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-index-registration-process__main-title {
    font-size: 2em;
  }
  .page-index-registration-process__tagline {
    font-size: 1em;
  }
  .page-index-registration-process__section-title {
    font-size: 1.8em;
  }
  .page-index-registration-process__sub-title {
    font-size: 1.3em;
  }
  .page-index-registration-process__hero-section {
    padding: 10px 15px 40px;
  }
  .page-index-registration-process__section {
    padding: 40px 15px;
  }
  .page-index-registration-process__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mobile image responsiveness */
  .page-index-registration-process img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-index-registration-process__hero-image-wrapper,
  .page-index-registration-process__step-card,
  .page-index-registration-process__cta-final-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-index-registration-process__cta-button,
  .page-index-registration-process__btn-primary,
  .page-index-registration-process a[class*="button"],
  .page-index-registration-process a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-registration-process__cta-buttons,
  .page-index-registration-process__button-group,
  .page-index-registration-process__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-index-registration-process__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  /* FAQ specific for mobile */
  .page-index-registration-process__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-index-registration-process__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-index-registration-process__main-title {
    font-size: 1.8em;
  }
  .page-index-registration-process__section-title {
    font-size: 1.5em;
  }
  .page-index-registration-process__sub-title {
    font-size: 1.2em;
  }
  .page-index-registration-process__cta-button {
    padding: 12px 20px;
  }
}