/* style/index-quick-register.css */
.page-index-quick-register {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Màu chữ sáng trên nền tối */
  background-color: #0A192F; /* Nền chính */
  line-height: 1.6;
}

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

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

.page-index-quick-register__section--benefits,
.page-index-quick-register__section--how-to-register,
.page-index-quick-register__section--promotions,
.page-index-quick-register__section--games,
.page-index-quick-register__section--mobile-app,
.page-index-quick-register__section--faq {
  background-color: #1A2A40; /* Nền phụ */
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-quick-register__section--promotions,
.page-index-quick-register__section--games {
  background-color: #0A192F;
}

.page-index-quick-register__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Màu vàng nổi bật */
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-index-quick-register__section-description {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-index-quick-register__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #2A3F5F 100%);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-index-quick-register__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.page-index-quick-register__hero-image {
  max-width: 100%;
  height: auto;
  opacity: 0.7;
  filter: grayscale(20%);
  transform: translateX(20%);
}

.page-index-quick-register__hero-section .page-index-quick-register__container {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 800px;
}

.page-index-quick-register__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-quick-register__hero-subtitle {
  font-size: 1.4em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 600px;
}

.page-index-quick-register__hero-cta {
  display: flex;
  gap: 20px;
}

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

.page-index-quick-register__button--primary {
  background-color: #FFD700;
  color: #0A192F;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-index-quick-register__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-index-quick-register__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-index-quick-register__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 25px;
}

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

.page-index-quick-register__cta-bottom {
  margin-top: 40px;
}

/* Benefits Grid */
.page-index-quick-register__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-index-quick-register__benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-index-quick-register__benefit-description {
  font-size: 1em;
  color: #C0C0C0;
}

/* How To Register Section */
.page-index-quick-register__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-index-quick-register__step-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  padding-top: 80px;
}

.page-index-quick-register__step-number {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

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

.page-index-quick-register__step-description {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-index-quick-register__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Promotions Section */
.page-index-quick-register__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-quick-register__promo-card {
  background-color: #1A2A40;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-quick-register__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-quick-register__promo-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: brightness(0.9);
}

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

.page-index-quick-register__promo-description {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-index-quick-register__promo-note {
  font-size: 0.9em;
  color: #888;
  margin-top: 30px;
}

/* Games Section */
.page-index-quick-register__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-quick-register__game-category {
  background-color: #1A2A40;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-quick-register__game-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-quick-register__game-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: brightness(0.9);
}

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

.page-index-quick-register__game-description {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

/* Mobile App Section */
.page-index-quick-register__mobile-app {
  background-color: #1A2A40;
}

.page-index-quick-register__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__app-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.page-index-quick-register__app-info p {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-index-quick-register__app-info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-index-quick-register__app-info ul li {
  color: #F0F0F0;
  font-size: 1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-index-quick-register__app-info ul li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-quick-register__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-quick-register__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-index-quick-register__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-index-quick-register__faq-item {
  background-color: #0A192F;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-index-quick-register__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-index-quick-register__faq-answer.active {
  max-height: 500px; /* Adjust as needed */
  opacity: 1;
  margin-top: 15px;
}

/* Final CTA Section */
.page-index-quick-register__section--final-cta {
  background-color: #0A192F;
  padding: 80px 0;
  border-top: 1px solid #FFD700;
}

.page-index-quick-register__small-text {
  font-size: 0.9em;
  color: #888;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-quick-register__hero-title {
    font-size: 2.8em;
  }
  .page-index-quick-register__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-quick-register__section-title {
    font-size: 2.2em;
  }
  .page-index-quick-register__hero-image-wrapper {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .page-index-quick-register__hero-section {
    padding: 80px 0 20px;
    min-height: auto;
  }
  .page-index-quick-register__hero-section .page-index-quick-register__container {
    text-align: center;
    max-width: 100%;
  }
  .page-index-quick-register__hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .page-index-quick-register__hero-image-wrapper {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 40px;
    transform: translateX(0);
    justify-content: center;
  }
  .page-index-quick-register__hero-image {
    max-width: 80%;
    opacity: 1;
    filter: grayscale(0%);
  }
  .page-index-quick-register__app-download {
    flex-direction: column;
    text-align: center;
  }
  .page-index-quick-register__app-info {
    order: 2;
  }
  .page-index-quick-register__app-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }
  .page-index-quick-register__app-info ul {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .page-index-quick-register__hero-title {
    font-size: 2em;
  }
  .page-index-quick-register__hero-subtitle {
    font-size: 1em;
  }
  .page-index-quick-register__section-title {
    font-size: 1.8em;
  }
  .page-index-quick-register__button {
    width: 100%;
  }
  .page-index-quick-register__benefit-title,
  .page-index-quick-register__step-title,
  .page-index-quick-register__promo-title,
  .page-index-quick-register__game-title,
  .page-index-quick-register__faq-question {
    font-size: 1.4em;
  }
  .page-index-quick-register__step-item {
    padding-top: 60px;
  }
  .page-index-quick-register__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    left: 20px;
    top: 15px;
  }
}