.page-index-how-to-register {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-index-how-to-register__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-index-how-to-register__section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-index-how-to-register__section-title {
  font-size: 36px;
  color: #8B0000; /* Deep Red for headings */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-index-how-to-register__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  border-radius: 2px;
}

.page-index-how-to-register__sub-title {
  font-size: 28px;
  color: #8B0000;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-how-to-register__paragraph {
  font-size: 18px;
  margin-bottom: 20px;
  color: #444444;
  text-align: justify;
}

.page-index-how-to-register__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-index-how-to-register__list li {
  margin-bottom: 10px;
  font-size: 17px;
  color: #555555;
}

/* Hero Section */
.page-index-how-to-register__hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Gradient background */
  color: #ffffff;
}

.page-index-how-to-register__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-how-to-register__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.page-index-how-to-register__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-how-to-register__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-how-to-register__hero-description {
  font-size: 22px;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-how-to-register__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700; /* Gold button */
  color: #8B0000; /* Deep Red text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-index-how-to-register__cta-button:hover {
  background: #FFA500; /* Darker Gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-how-to-register__cta-button--small {
  padding: 12px 30px;
  font-size: 18px;
  margin-top: 15px;
}

/* Guide Steps */
.page-index-how-to-register__guide-steps .page-index-how-to-register__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-how-to-register__step-title {
  font-size: 30px;
  color: #8B0000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-how-to-register__step-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

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

.page-index-how-to-register__promo-card {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-how-to-register__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-how-to-register__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-how-to-register__promo-title {
  font-size: 24px;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-how-to-register__promo-description {
  font-size: 16px;
  color: #666666;
  margin-bottom: 20px;
}

.page-index-how-to-register__promo-button {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #8B0000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-how-to-register__promo-button:hover {
  background: #FFA500;
}

/* Games Section */
.page-index-how-to-register__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-index-how-to-register__game-list li {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-how-to-register__game-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-how-to-register__game-title {
  font-size: 24px;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-how-to-register__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-how-to-register__button-link {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #8B0000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.page-index-how-to-register__button-link:hover {
  background: #FFA500;
}

/* FAQ Section */
.page-index-how-to-register__faq-list {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  font-size: 20px;
  color: #333333;
  margin: 0;
  font-weight: bold;
}

.faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #8B0000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  background: #f9f9f9;
  color: #555555;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to accommodate content */
  padding: 20px 25px;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
}

/* Contact Section */
.page-index-how-to-register__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.page-index-how-to-register__contact-list li {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  font-size: 18px;
  color: #555;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-weight: bold;
}

.page-index-how-to-register__contact-list li strong {
  color: #8B0000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-how-to-register__hero-title {
    font-size: 42px;
  }

  .page-index-how-to-register__hero-description {
    font-size: 20px;
  }

  .page-index-how-to-register__section-title {
    font-size: 32px;
  }

  .page-index-how-to-register__sub-title {
    font-size: 26px;
  }

  .page-index-how-to-register__paragraph {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-index-how-to-register__section {
    padding: 40px 0;
  }

  .page-index-how-to-register__hero {
    padding: 40px 15px;
  }

  .page-index-how-to-register__hero-title {
    font-size: 34px;
  }

  .page-index-how-to-register__hero-description {
    font-size: 18px;
  }

  .page-index-how-to-register__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }

  .page-index-how-to-register__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-index-how-to-register__sub-title {
    font-size: 22px;
  }

  .page-index-how-to-register__paragraph {
    font-size: 16px;
  }

  .page-index-how-to-register__promo-grid,
  .page-index-how-to-register__game-list {
    grid-template-columns: 1fr;
  }

  .page-index-how-to-register__promo-image,
  .page-index-how-to-register__game-image {
    height: 150px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  .faq-toggle {
    font-size: 24px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }

  .page-index-how-to-register__contact-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-how-to-register__hero-title {
    font-size: 28px;
  }

  .page-index-how-to-register__hero-description {
    font-size: 16px;
  }

  .page-index-how-to-register__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-index-how-to-register__section-title {
    font-size: 24px;
  }

  .page-index-how-to-register__sub-title {
    font-size: 20px;
  }

  .page-index-how-to-register__paragraph {
    font-size: 15px;
  }

  .page-index-how-to-register__step-title,
  .page-index-how-to-register__promo-title,
  .page-index-how-to-register__game-title {
    font-size: 20px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-toggle {
    font-size: 20px;
  }
}