/* style/index-okfun-registration-process.css */
.page-index-okfun-registration-process {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for readability on dark backgrounds */
  background-color: #000000; /* Main background color */
}

.page-index-okfun-registration-process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-okfun-registration-process__hero-section {
  background: linear-gradient(135deg, #FFD700, #000000); /* Gold to Black gradient */
  padding: 100px 0;
  text-align: center;
  color: #000000; /* Dark text on light background */
}

.page-index-okfun-registration-process__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #000000;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-okfun-registration-process__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-index-okfun-registration-process__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-okfun-registration-process__section:nth-of-type(even) {
  background-color: #1a1a1a; /* Slightly lighter black for contrast */
}

.page-index-okfun-registration-process__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(255, 215, 0, 0.3);
}

.page-index-okfun-registration-process__section-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #E0E0E0;
}

.page-index-okfun-registration-process__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000000; /* Black text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-index-okfun-registration-process__btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-index-okfun-registration-process__btn--primary {
  background-color: #FFD700;
  color: #000000;
}

.page-index-okfun-registration-process__feature-list,
.page-index-okfun-registration-process__info-list,
.page-index-okfun-registration-process__note-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-index-okfun-registration-process__feature-list li,
.page-index-okfun-registration-process__info-list li,
.page-index-okfun-registration-process__note-list li {
  background-color: #333333; /* Dark gray background for list items */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.05em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #F0F0F0;
}

.page-index-okfun-registration-process__feature-list li strong,
.page-index-okfun-registration-process__info-list li strong,
.page-index-okfun-registration-process__note-list li strong {
  color: #FFD700; /* Gold for strong text in lists */
}

.page-index-okfun-registration-process__step-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  text-align: left;
}

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

.page-index-okfun-registration-process__step-item p {
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-index-okfun-registration-process__step-image,
.page-index-okfun-registration-process__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-okfun-registration-process__faq-item {
  background-color: #333333;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.page-index-okfun-registration-process__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-okfun-registration-process__faq-answer {
  color: #E0E0E0;
}

.page-index-okfun-registration-process__conclusion .page-index-okfun-registration-process__section-text {
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-okfun-registration-process__hero-title {
    font-size: 2.5em;
  }

  .page-index-okfun-registration-process__hero-description,
  .page-index-okfun-registration-process__section-text {
    font-size: 1em;
  }

  .page-index-okfun-registration-process__section-title {
    font-size: 2em;
  }

  .page-index-okfun-registration-process__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-okfun-registration-process__feature-list li,
  .page-index-okfun-registration-process__info-list li,
  .page-index-okfun-registration-process__note-list li,
  .page-index-okfun-registration-process__step-item,
  .page-index-okfun-registration-process__faq-item {
    padding: 15px;
  }

  .page-index-okfun-registration-process__step-title {
    font-size: 1.5em;
  }

  .page-index-okfun-registration-process__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-okfun-registration-process__hero-title {
    font-size: 2em;
  }

  .page-index-okfun-registration-process__section-title {
    font-size: 1.8em;
  }

  .page-index-okfun-registration-process__btn {
    display: block;
    width: 100%;
    margin-top: 15px;
  }
}