/* style/login-entry.css */
.page-login-entry {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for text on dark background */
  background-color: #0A121A; /* Very dark background to complement main color */
  line-height: 1.6;
}

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

.page-login-entry__section {
  padding: 60px 0;
}

.page-login-entry__section:nth-child(even) {
  background-color: #121E2B; /* Slightly lighter dark background for contrast */
}

.page-login-entry__hero {
  background: linear-gradient(135deg, #1A2B3C, #0A121A);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

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

.page-login-entry__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-login-entry__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0;
  position: relative;
  z-index: 1;
}

.page-login-entry__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

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

.page-login-entry__btn--primary {
  background-color: #FFD700; /* Gold for primary action */
  color: #1A2B3C; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-login-entry__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-login-entry__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-login-entry__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B3C;
  transform: translateY(-2px);
}

.page-login-entry__btn--tertiary {
  background-color: #1A2B3C;
  color: #FFD700;
  border: 2px solid #1A2B3C;
}

.page-login-entry__btn--tertiary:hover {
  background-color: #2b3d4f;
  border-color: #2b3d4f;
  transform: translateY(-2px);
}

.page-login-entry__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-login-entry__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-login-entry__text-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #B0B0B0;
}

.page-login-entry__text {
  font-size: 1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

.page-login-entry__feature-item {
  background-color: #1A2B3C; /* Main color for feature cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-login-entry__feature-text {
  font-size: 0.95em;
  color: #B0B0B0;
}

.page-login-entry__step-by-step {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.page-login-entry__step {
  background-color: #1A2B3C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-login-entry__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #1A2B3C;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-login-entry__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-login-entry__step-text {
  font-size: 0.95em;
  color: #B0B0B0;
}

.page-login-entry__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 30px;
  background-color: #1A2B3C;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-login-entry__cta-block p {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-login-entry__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-login-entry__list li {
  background-color: #1A2B3C;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-login-entry__list li strong {
  color: #FFD700;
}

.page-login-entry__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-login-entry__image--large {
  max-width: 800px;
}

.page-login-entry__app-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.page-login-entry__app-qr {
  text-align: center;
  background-color: #1A2B3C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-login-entry__qr-code {
  width: 180px;
  height: 180px;
  border: 5px solid #FFD700;
  border-radius: 5px;
  margin-bottom: 15px;
}

.page-login-entry__qr-text {
  color: #FFD700;
  font-size: 1.1em;
  font-weight: bold;
}

.page-login-entry__app-details {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.page-login-entry__app-screenshot {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 3px solid #FFD700;
}

.page-login-entry__faq-item {
  background-color: #1A2B3C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-login-entry__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-login-entry__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

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

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

.page-login-entry__cta-block--final {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 80px;
  background-color: #0A121A;
  border: 2px solid #FFD700;
  padding: 40px;
}

.page-login-entry__cta-block--final .page-login-entry__btn {
  flex: 1 1 auto;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-login-entry__hero-title {
    font-size: 2.8em;
  }
  .page-login-entry__section-title {
    font-size: 2em;
  }
  .page-login-entry__hero-description {
    font-size: 1.1em;
  }
  .page-login-entry__features-grid,
  .page-login-entry__step-by-step {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-login-entry__app-info {
    flex-direction: column;
  }
  .page-login-entry__app-details {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-login-entry__hero-title {
    font-size: 2.2em;
  }
  .page-login-entry__section-title {
    font-size: 1.8em;
  }
  .page-login-entry__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-login-entry__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-login-entry__cta-block--final .page-login-entry__btn {
    max-width: 100%;
  }
  .page-login-entry__section {
    padding: 40px 0;
  }
  .page-login-entry__hero {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .page-login-entry__hero-title {
    font-size: 1.8em;
  }
  .page-login-entry__section-title {
    font-size: 1.5em;
  }
  .page-login-entry__hero-description {
    font-size: 1em;
  }
  .page-login-entry__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-login-entry__feature-item,
  .page-login-entry__step {
    padding: 20px;
  }
  .page-login-entry__qr-code {
    width: 150px;
    height: 150px;
  }
}