/* style/index-how-to-register.css */
.page-index-how-to-register {
  font-family: 'Arial', sans-serif;
  color: #f5f0e7; /* Light text for dark background */
  background-color: #0A0F18;
  line-height: 1.6;
}

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

.page-index-how-to-register__hero {
  background: linear-gradient(135deg, #0A0F18 0%, #301f00 100%); /* Dark blue/near black to dark gold */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFD700;
}

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

.page-index-how-to-register__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-index-how-to-register__hero-subtitle {
  font-size: 1.25em;
  margin-bottom: 40px;
  color: #f5f0e7;
  position: relative;
  z-index: 1;
}

.page-index-how-to-register__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-index-how-to-register__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A0F18; /* Dark text on gold */
  border: 2px solid #FFD700;
  font-size: 1.1em;
}

.page-index-how-to-register__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-how-to-register__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FFD700;
  color: #0A0F18;
  border: 1px solid #FFD700;
}

.page-index-how-to-register__btn--small:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-index-how-to-register__btn--large {
  font-size: 1.3em;
  padding: 20px 40px;
}

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

.page-index-how-to-register__section:nth-of-type(even) {
  background-color: #1a1f29; /* Slightly lighter dark background */
}

.page-index-how-to-register__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

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

.page-index-how-to-register__intro-text {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #cccccc;
}

/* Why Choose Section */
.page-index-how-to-register__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-how-to-register__feature-card {
  background-color: #0A0F18;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-how-to-register__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: #FFD700;
}

.page-index-how-to-register__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-index-how-to-register__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-how-to-register__feature-description {
  color: #f5f0e7;
  font-size: 1em;
}

/* Steps Section */
.page-index-how-to-register__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-how-to-register__step-card {
  background-color: #1a1f29;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-how-to-register__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #0A0F18;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #0A0F18;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.6);
}

.page-index-how-to-register__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-how-to-register__step-description {
  color: #f5f0e7;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

/* Important Notes Section */
.page-index-how-to-register__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-index-how-to-register__list li {
  background-color: #1a1f29;
  border-left: 5px solid #FFD700;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #f5f0e7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
}

.page-index-how-to-register__list-icon {
  color: #FFD700;
  font-size: 1.4em;
  margin-right: 15px;
  line-height: 1;
}

.page-index-how-to-register__image-full-width {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-index-how-to-register__explore-card {
  background-color: #0A0F18;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-how-to-register__explore-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: contain; /* Ensure image fits well */
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.page-index-how-to-register__explore-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-how-to-register__explore-description {
  color: #f5f0e7;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* CTA Section */
.page-index-how-to-register__section--cta {
  background-color: #1a1f29;
  padding: 80px 0;
}

.page-index-how-to-register__section--cta .page-index-how-to-register__section-title {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-how-to-register__hero-title {
    font-size: 2.5em;
  }

  .page-index-how-to-register__hero-subtitle {
    font-size: 1em;
  }

  .page-index-how-to-register__section-title {
    font-size: 2em;
  }

  .page-index-how-to-register__grid,
  .page-index-how-to-register__step-by-step,
  .page-index-how-to-register__explore-grid {
    grid-template-columns: 1fr;
  }

  .page-index-how-to-register__list li {
    padding: 15px;
    font-size: 1em;
  }

  .page-index-how-to-register__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    top: -15px;
  }

  .page-index-how-to-register__feature-icon,
  .page-index-how-to-register__explore-image {
    width: 60px;
    height: 60px;
  }
}

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

  .page-index-how-to-register__hero-subtitle {
    font-size: 0.9em;
  }

  .page-index-how-to-register__btn--primary {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-how-to-register__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-index-how-to-register__section-title {
    font-size: 1.8em;
  }

  .page-index-how-to-register__feature-title,
  .page-index-how-to-register__step-title,
  .page-index-how-to-register__explore-title {
    font-size: 1.3em;
  }
}