/* style/index-user-login-registration-entry.css */
.page-index-user-login-registration-entry {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  line-height: 1.6;
  background-color: #1A202C;
}

.page-index-user-login-registration-entry__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-index-user-login-registration-entry__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%);
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.page-index-user-login-registration-entry__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-user-login-registration-entry__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-index-user-login-registration-entry__main-heading {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main heading */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-user-login-registration-entry__sub-heading {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-index-user-login-registration-entry__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index-user-login-registration-entry__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-index-user-login-registration-entry__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #1A202C; /* Dark text on gold */
}

.page-index-user-login-registration-entry__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-index-user-login-registration-entry__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border-color: #FFD700; /* Gold border */
}

.page-index-user-login-registration-entry__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-index-user-login-registration-entry__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 50%;
  max-width: 600px;
  opacity: 0.2;
  z-index: 0;
}

.page-index-user-login-registration-entry__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* General Section Styling */
.page-index-user-login-registration-entry__info-section,
.page-index-user-login-registration-entry__login-register-guide,
.page-index-user-login-registration-entry__app-download-section,
.page-index-user-login-registration-entry__faq-section,
.page-index-user-login-registration-entry__cta-bottom {
  padding: 80px 0;
  text-align: center;
}

.page-index-user-login-registration-entry__bg-dark {
  background-color: #1A202C;
}

.page-index-user-login-registration-entry__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-index-user-login-registration-entry__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-index-user-login-registration-entry__info-section .page-index-user-login-registration-entry__section-description {
  color: #E0E0E0;
}

.page-index-user-login-registration-entry__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-user-login-registration-entry__feature-item {
  background-color: #2a3342; /* Slightly lighter dark for feature cards */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-user-login-registration-entry__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-user-login-registration-entry__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-user-login-registration-entry__feature-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-index-user-login-registration-entry__feature-text {
  font-size: 1em;
  color: #B0B0B0;
}

/* Guide Section */
.page-index-user-login-registration-entry__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-index-user-login-registration-entry__step-item {
  background-color: #2a3342;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;
  padding-bottom: 100px; /* Space for button */
}

.page-index-user-login-registration-entry__step-item:nth-child(1) {
  background-image: linear-gradient(45deg, #2a3342, #3c4a5f);
}
.page-index-user-login-registration-entry__step-item:nth-child(2) {
  background-image: linear-gradient(45deg, #3c4a5f, #2a3342);
}
.page-index-user-login-registration-entry__step-item:nth-child(3) {
  background-image: linear-gradient(45deg, #2a3342, #3c4a5f);
}

.page-index-user-login-registration-entry__step-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for step titles */
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}

.page-index-user-login-registration-entry__step-title::before {
  content: '0' counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5em;
  font-weight: bold;
  color: rgba(255, 215, 0, 0.5);
}

.page-index-user-login-registration-entry__step-text {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 30px;
}

.page-index-user-login-registration-entry__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
  position: absolute;
  bottom: 30px;
  left: 40px;
  right: 40px;
  width: calc(100% - 80px);
  padding: 12px 20px;
  font-size: 1em;
  text-align: center;
}

.page-index-user-login-registration-entry__btn--outline:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-index-user-login-registration-entry__guide-image {
  width: 100%;
  max-width: 800px;
  margin-top: 60px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* App Download Section */
.page-index-user-login-registration-entry__app-download-section {
  padding: 100px 0;
  background-color: #1A202C;
  position: relative;
  overflow: hidden;
}

.page-index-user-login-registration-entry__app-download-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-user-login-registration-entry__app-download-section .page-index-user-login-registration-entry__section-title,
.page-index-user-login-registration-entry__app-download-section .page-index-user-login-registration-entry__section-description {
  position: relative;
  z-index: 1;
}

.page-index-user-login-registration-entry__download-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.page-index-user-login-registration-entry__app-image {
  width: 100%;
  max-width: 500px;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

/* FAQ Section */
.page-index-user-login-registration-entry__faq-section {
  background-color: #2a3342;
  padding: 80px 0;
}

.page-index-user-login-registration-entry__faq-list {
  margin-top: 50px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-user-login-registration-entry__faq-item {
  background-color: #1A202C;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.page-index-user-login-registration-entry__faq-item:hover {
  transform: translateY(-3px);
}

.page-index-user-login-registration-entry__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-user-login-registration-entry__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-index-user-login-registration-entry__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-user-login-registration-entry__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
  padding-top: 0;
}

.page-index-user-login-registration-entry__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
  padding-top: 15px;
}

/* Bottom CTA */
.page-index-user-login-registration-entry__cta-bottom {
  padding: 100px 0;
  background-color: #1A202C;
}

.page-index-user-login-registration-entry__cta-bottom .page-index-user-login-registration-entry__section-title {
  font-size: 3em;
}

.page-index-user-login-registration-entry__cta-bottom .page-index-user-login-registration-entry__cta-buttons {
  margin-top: 40px;
}

/* Highlight text */
.page-index-user-login-registration-entry .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-user-login-registration-entry__main-heading {
    font-size: 2.8em;
  }
  .page-index-user-login-registration-entry__section-title {
    font-size: 2.2em;
  }
  .page-index-user-login-registration-entry__hero-image-wrapper {
    width: 70%;
    bottom: -30px;
  }
}

@media (max-width: 768px) {
  .page-index-user-login-registration-entry__hero-section {
    min-height: 500px;
    padding: 60px 0;
  }
  .page-index-user-login-registration-entry__main-heading {
    font-size: 2.2em;
  }
  .page-index-user-login-registration-entry__sub-heading {
    font-size: 1.2em;
  }
  .page-index-user-login-registration-entry__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-user-login-registration-entry__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-user-login-registration-entry__hero-image-wrapper {
    width: 90%;
    bottom: -10px;
  }
  .page-index-user-login-registration-entry__info-section,
  .page-index-user-login-registration-entry__login-register-guide,
  .page-index-user-login-registration-entry__app-download-section,
  .page-index-user-login-registration-entry__faq-section,
  .page-index-user-login-registration-entry__cta-bottom {
    padding: 60px 0;
  }
  .page-index-user-login-registration-entry__feature-item,
  .page-index-user-login-registration-entry__step-item {
    padding: 25px;
    margin: 0 10px;
  }
  .page-index-user-login-registration-entry__step-title {
    font-size: 1.5em;
  }
  .page-index-user-login-registration-entry__download-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-user-login-registration-entry__btn--outline {
    left: 25px;
    right: 25px;
    width: calc(100% - 50px);
  }
}

@media (max-width: 480px) {
  .page-index-user-login-registration-entry__main-heading {
    font-size: 1.8em;
  }
  .page-index-user-login-registration-entry__section-title {
    font-size: 1.8em;
  }
  .page-index-user-login-registration-entry__sub-heading {
    font-size: 1em;
  }
  .page-index-user-login-registration-entry__btn {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index-user-login-registration-entry__hero-image-wrapper {
    display: none;
  }
  .page-index-user-login-registration-entry__feature-icon {
    width: 50px;
    height: 50px;
  }
  .page-index-user-login-registration-entry__feature-title {
    font-size: 1.3em;
  }
  .page-index-user-login-registration-entry__step-title {
    font-size: 1.3em;
  }
  .page-index-user-login-registration-entry__faq-question {
    font-size: 1.1em;
  }
  .page-index-user-login-registration-entry__faq-answer {
    font-size: 0.95em;
  }
}

/* Color Contrast Check */
/* Ensure all text colors have sufficient contrast with their backgrounds */
/* Text on #1A202C (dark) should be light: #FFD700, #E0E0E0, #B0B0B0 */
/* Text on #FFD700 (gold) should be dark: #1A202C */
/* Text on #2a3342 (medium dark) should be light: #FFD700, #B0B0B0 */
/* The chosen colors satisfy WCAG AA standards. */