/* style/register-login.css */
.page-register-login {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Main dark background */
  line-height: 1.6;
}

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

.page-register-login__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-register-login__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-register-login__hero-section > div {
  position: relative;
  z-index: 1;
}

.page-register-login__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-register-login__hero-description {
  font-size: 1.2em;
  color: #c0c0c0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-register-login__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-register-login__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.1em;
}

.page-register-login__btn--primary {
  background-color: #FFD700; /* Gold for primary action */
  color: #0A1931;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-register-login__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-register-login__btn--secondary {
  background-color: #334c7a; /* Dark blue for secondary action */
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-register-login__btn--secondary:hover {
  background-color: #4a6fa8;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-register-login__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #0A1931;
  margin-top: 15px;
}

.page-register-login__btn--small:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-register-login__btn--large {
  padding: 20px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-register-login__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-register-login__section:last-of-type {
  border-bottom: none;
}

.page-register-login__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-register-login__section-intro {
  font-size: 1.1em;
  color: #c0c0c0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-register-login__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-register-login__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-register-login__feature-item {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-register-login__feature-item:hover {
  transform: translateY(-5px);
  background-color: #2b3e61;
}

.page-register-login__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-register-login__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-register-login__feature-description {
  color: #b0b0b0;
}

.page-register-login__steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-register-login__step-item {
  background-color: #1a2a47;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px;
}

.page-register-login__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  background-color: #FFD700;
  color: #0A1931;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-register-login__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-register-login__step-description {
  color: #c0c0c0;
  margin-bottom: 15px;
}

.page-register-login__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login__sub-steps {
  list-style: disc;
  margin-left: 25px;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-register-login__sub-steps li strong {
  color: #FFD700;
}

.page-register-login__bullet-list {
  list-style: disc;
  margin-left: 25px;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-register-login__bullet-list li {
  margin-bottom: 10px;
}

.page-register-login__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-register-login__platform-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-register-login__platform-list li {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  flex: 1;
  max-width: 400px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-register-login__platform-list li:hover {
  transform: translateY(-5px);
  background-color: #2b3e61;
}

.page-register-login__platform-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.page-register-login__platform-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-register-login__platform-description {
  color: #b0b0b0;
  margin-bottom: 20px;
}

.page-register-login__faq-items {
  margin-top: 40px;
}

.page-register-login__faq-item {
  background-color: #1a2a47;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-register-login__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-register-login__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-register-login__faq-answer {
  color: #c0c0c0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-register-login__faq-answer.open {
  max-height: 200px; /* Adjust as needed for content */
  margin-top: 15px;
}

.page-register-login__related-pages {
  background-color: #0A1931;
}

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

.page-register-login__page-card {
  background-color: #1a2a47;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-register-login__page-card:hover {
  transform: translateY(-5px);
  background-color: #2b3e61;
}

.page-register-login__card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-register-login__card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-register-login__card-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-register-login__card-description {
  color: #b0b0b0;
  margin-bottom: 20px;
}

.page-register-login__cta-bottom {
  padding: 80px 0;
  text-align: center;
  background-color: #1a2a47;
  border-top: 5px solid #FFD700;
}

.page-register-login__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-register-login__cta-description {
  font-size: 1.2em;
  color: #c0c0c0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

  .page-register-login__hero-description,
  .page-register-login__section-intro,
  .page-register-login__cta-description {
    font-size: 1em;
  }

  .page-register-login__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-register-login__btn {
    width: 100%;
    max-width: 300px;
  }

  .page-register-login__section-title {
    font-size: 2em;
  }

  .page-register-login__sub-title {
    font-size: 1.5em;
  }

  .page-register-login__feature-item {
    padding: 20px;
  }

  .page-register-login__step-item {
    padding: 20px;
    padding-left: 60px;
  }

  .page-register-login__step-item::before {
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }

  .page-register-login__step-title {
    font-size: 1.4em;
  }

  .page-register-login__platform-list {
    flex-direction: column;
    align-items: center;
  }

  .page-register-login__platform-list li {
    max-width: 100%;
  }

  .page-register-login__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-register-login__hero-title {
    font-size: 2em;
  }

  .page-register-login__hero-buttons {
    gap: 10px;
  }

  .page-register-login__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-register-login__section-title {
    font-size: 1.8em;
  }

  .page-register-login__feature-title {
    font-size: 1.3em;
  }

  .page-register-login__step-title {
    font-size: 1.2em;
  }

  .page-register-login__faq-question {
    font-size: 1.2em;
  }

  .page-register-login__card-title {
    font-size: 1.2em;
  }

  .page-register-login__cta-title {
    font-size: 1.8em;
  }
}