/* style/index-quick-register-login.css */
.page-index-quick-register-login {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A1A2E; /* Midnight blue/dark background */
}

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

.page-index-quick-register-login__hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%); /* Darker gradient for hero */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #FFD700;
}

.page-index-quick-register-login__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract_geometric,dark_luxury,subtle_pattern]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-index-quick-register-login__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.page-index-quick-register-login__hero-description {
  font-size: 1.3em;
  color: #F0F0F0; /* Lighter gray for description */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

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

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

.page-index-quick-register-login__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A1A2E; /* Dark text on gold */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-quick-register-login__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-index-quick-register-login__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-index-quick-register-login__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A2E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-index-quick-register-login__btn--small {
  padding: 10px 25px;
  font-size: 1em;
}

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

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

.page-index-quick-register-login__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-index-quick-register-login__section-intro {
  font-size: 1.1em;
  color: #B0B0B0; /* Gray for intros */
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

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

.page-index-quick-register-login__feature-item,
.page-index-quick-register-login__offer-card {
  background-color: #1A1A2E;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-quick-register-login__feature-item:hover,
.page-index-quick-register-login__offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.2);
}

.page-index-quick-register-login__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-index-quick-register-login__feature-title,
.page-index-quick-register-login__offer-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for feature/offer titles */
  margin-bottom: 15px;
}

.page-index-quick-register-login__feature-description,
.page-index-quick-register-login__offer-description {
  font-size: 0.95em;
  color: #C0C0C0;
  line-height: 1.6;
}

.page-index-quick-register-login__how-to-register .page-index-quick-register-login__steps-list,
.page-index-quick-register-login__how-to-login .page-index-quick-register-login__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-index-quick-register-login__steps-list li {
  background-color: #1A1A2E;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px;
}

.page-index-quick-register-login__steps-list li::before {
  content: attr(data-step);
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  background-color: #FFD700;
  color: #1A1A2E;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.page-index-quick-register-login__step-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for step titles */
  margin-bottom: 10px;
}

.page-index-quick-register-login__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  border: 1px solid #555;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-index-quick-register-login__call-to-action-text {
  font-size: 1.2em;
  color: #F0F0F0;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-index-quick-register-login__download-app {
  background-color: #2a2a40;
}

.page-index-quick-register-login__app-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.page-index-quick-register-login__app-item {
  background-color: #1A1A2E;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  width: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-index-quick-register-login__app-description {
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-index-quick-register-login__app-showcase-image {
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
  border: 2px solid #FFD700;
}

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

.page-index-quick-register-login__faq-item {
  background-color: #1A1A2E;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-quick-register-login__faq-question {
  font-size: 1.5em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

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

.page-index-quick-register-login__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.7;
  margin-top: 15px;
  display: none; /* Hidden by default, JS will toggle */
}

.page-index-quick-register-login__faq-answer.active {
  display: block;
}

.page-index-quick-register-login__final-cta {
  background-color: #1A1A2E;
  padding: 80px 0;
  border-top: 2px solid #FFD700;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-quick-register-login__hero-title {
    font-size: 2.8em;
  }
  .page-index-quick-register-login__section-title {
    font-size: 2.2em;
  }
  .page-index-quick-register-login__features-grid,
  .page-index-quick-register-login__offers-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-index-quick-register-login__app-showcase-image {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-index-quick-register-login__hero {
    padding: 80px 0;
  }
  .page-index-quick-register-login__hero-title {
    font-size: 2.2em;
  }
  .page-index-quick-register-login__hero-description {
    font-size: 1.1em;
  }
  .page-index-quick-register-login__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-quick-register-login__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-quick-register-login__section {
    padding: 40px 0;
  }
  .page-index-quick-register-login__section-title {
    font-size: 1.8em;
  }
  .page-index-quick-register-login__section-intro {
    font-size: 1em;
  }
  .page-index-quick-register-login__steps-list li {
    padding: 20px;
    padding-left: 60px;
  }
  .page-index-quick-register-login__steps-list li::before {
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .page-index-quick-register-login__step-title {
    font-size: 1.5em;
  }
  .page-index-quick-register-login__app-options {
    flex-direction: column;
    align-items: center;
  }
  .page-index-quick-register-login__app-item {
    width: 90%;
  }
  .page-index-quick-register-login__app-showcase-image {
    max-width: 95%;
  }
  .page-index-quick-register-login__faq-question {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-index-quick-register-login__hero-title {
    font-size: 1.8em;
  }
  .page-index-quick-register-login__hero-description {
    font-size: 0.9em;
  }
  .page-index-quick-register-login__btn {
    font-size: 1em;
    padding: 12px 25px;
    width: 90%;
  }
  .page-index-quick-register-login__section-title {
    font-size: 1.6em;
  }
  .page-index-quick-register-login__feature-title,
  .page-index-quick-register-login__offer-title {
    font-size: 1.4em;
  }
  .page-index-quick-register-login__faq-question {
    font-size: 1.1em;
  }
  .page-index-quick-register-login__faq-answer {
    font-size: 0.9em;
  }
}