/* style/index-quick-register-entrance.css */
.page-index-quick-register-entrance {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Primary dark background */
  line-height: 1.6;
  overflow-x: hidden;
}

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

.page-index-quick-register-entrance__hero {
  background: linear-gradient(135deg, #0A1931 0%, #2a3a5a 100%);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-quick-register-entrance__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-index-quick-register-entrance__hero-subtitle {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-index-quick-register-entrance__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

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

.page-index-quick-register-entrance__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark text on gold */
}

.page-index-quick-register-entrance__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-quick-register-entrance__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-quick-register-entrance__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-index-quick-register-entrance__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin-top: 20px;
}

.page-index-quick-register-entrance__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-quick-register-entrance__section:nth-of-type(even) {
  background-color: #122442; /* Slightly lighter dark background */
}

.page-index-quick-register-entrance__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-quick-register-entrance__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-index-quick-register-entrance__why-choose .page-index-quick-register-entrance__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-quick-register-entrance__feature-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2a3a5a;
}

.page-index-quick-register-entrance__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-index-quick-register-entrance__feature-text {
  font-size: 1em;
  color: #B0B0B0;
}

.page-index-quick-register-entrance__registration-guide .page-index-quick-register-entrance__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-index-quick-register-entrance__step-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2a3a5a;
  flex: 1 1 300px;
  max-width: 350px;
  position: relative;
  text-align: left;
}

.page-index-quick-register-entrance__step-number {
  width: 40px;
  height: 40px;
  background-color: #FFD700;
  color: #0A1931;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-index-quick-register-entrance__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-quick-register-entrance__step-text {
  font-size: 1em;
  color: #B0B0B0;
}

.page-index-quick-register-entrance__step-text a {
  color: #FFD700;
  text-decoration: underline;
}

.page-index-quick-register-entrance__cta-bottom {
  margin-top: 50px;
}

.page-index-quick-register-entrance__process-image {
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin-top: 50px;
}

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

.page-index-quick-register-entrance__offer-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2a3a5a;
  text-align: center;
}

.page-index-quick-register-entrance__offer-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-quick-register-entrance__offer-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-quick-register-entrance__offer-text {
  font-size: 0.95em;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-index-quick-register-entrance__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-quick-register-entrance__mobile-access {
  background-color: #122442;
}

.page-index-quick-register-entrance__app-download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-index-quick-register-entrance__app-image {
  max-width: 350px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-quick-register-entrance__app-info {
  flex: 1;
  max-width: 600px;
}

.page-index-quick-register-entrance__app-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-quick-register-entrance__app-text {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 30px;
}

.page-index-quick-register-entrance__faq-list {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-quick-register-entrance__faq-item {
  background-color: #0A1931;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2a3a5a;
}

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

.page-index-quick-register-entrance__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
  border-top: 1px solid #1a2e50;
  margin-top: 10px;
}

.page-index-quick-register-entrance__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-quick-register-entrance__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-index-quick-register-entrance__final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #122442 0%, #0A1931 100%);
}

.page-index-quick-register-entrance__cta-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-index-quick-register-entrance__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-quick-register-entrance__hero-title {
    font-size: 2.8em;
  }
  .page-index-quick-register-entrance__section-title {
    font-size: 2em;
  }
  .page-index-quick-register-entrance__app-download {
    flex-direction: column;
    text-align: center;
  }
  .page-index-quick-register-entrance__app-info {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index-quick-register-entrance__hero-title {
    font-size: 2.2em;
  }
  .page-index-quick-register-entrance__hero-subtitle {
    font-size: 1em;
  }
  .page-index-quick-register-entrance__hero-actions, .page-index-quick-register-entrance__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-quick-register-entrance__btn, .page-index-quick-register-entrance__btn--large {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-index-quick-register-entrance__section-title {
    font-size: 1.8em;
  }
  .page-index-quick-register-entrance__why-choose .page-index-quick-register-entrance__features,
  .page-index-quick-register-entrance__offers .page-index-quick-register-entrance__offer-list {
    grid-template-columns: 1fr;
  }
  .page-index-quick-register-entrance__registration-guide .page-index-quick-register-entrance__steps {
    flex-direction: column;
    align-items: center;
  }
  .page-index-quick-register-entrance__step-item {
    max-width: 90%;
  }
  .page-index-quick-register-entrance__process-image {
    max-width: 95%;
  }
  .page-index-quick-register-entrance__app-image {
    max-width: 280px;
  }
}