/* style/blog-how-to-register-at-hi888.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #0d0d0d; /* Assuming body background is dark from shared.css var(--black-color) */
  --login-color: #EA7C07;
}

.page-blog-how-to-register-at-hi888 {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Main text color for dark body background */
  background-color: var(--bg-dark); /* Match body background from shared.css */
}

.page-blog-how-to-register-at-hi888__hero-section {
  position: relative;
  width: 100%;
  padding: 10px 0 60px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
}

.page-blog-how-to-register-at-hi888__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.page-blog-how-to-register-at-hi888__hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-register-at-hi888__hero-content {
  max-width: 800px;
}

.page-blog-how-to-register-at-hi888__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 48px);
}

.page-blog-how-to-register-at-hi888__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 30px;
}

.page-blog-how-to-register-at-hi888__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-blog-how-to-register-at-hi888__cta-button:hover {
  background: #1e87c0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-register-at-hi888__cta-button--primary {
  background-color: var(--login-color);
}

.page-blog-how-to-register-at-hi888__cta-button--primary:hover {
  background-color: #c96700;
}

.page-blog-how-to-register-at-hi888__content-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-blog-how-to-register-at-hi888__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-register-at-hi888__article {
  line-height: 1.7;
}

.page-blog-how-to-register-at-hi888__article-heading {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
}

.page-blog-how-to-register-at-hi888__sub-heading {
  font-size: 1.6em;
  font-weight: bold;
  color: var(--text-light);
  margin-top: 35px;
  margin-bottom: 20px;
  text-align: left;
}

.page-blog-how-to-register-at-hi888__article-paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-blog-how-to-register-at-hi888__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-blog-how-to-register-at-hi888__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-how-to-register-at-hi888__image-content {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-register-at-hi888__cta-section {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-how-to-register-at-hi888__cta-section--bottom {
  margin-top: 50px;
}

/* FAQ Section */
.page-blog-how-to-register-at-hi888__faq-list {
  margin-top: 40px;
}

details.page-blog-how-to-register-at-hi888__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #333;
  overflow: hidden;
  background: #1a1a1a; /* Darker background for FAQ items */
  color: var(--text-light);
}

details.page-blog-how-to-register-at-hi888__faq-item summary.page-blog-how-to-register-at-hi888__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-weight: 600;
  font-size: 1.1em;
}

details.page-blog-how-to-register-at-hi888__faq-item summary.page-blog-how-to-register-at-hi888__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-how-to-register-at-hi888__faq-item summary.page-blog-how-to-register-at-hi888__faq-question:hover {
  background: #2a2a2a;
}

.page-blog-how-to-register-at-hi888__faq-qtext {
  flex: 1;
  line-height: 1.5;
  text-align: left;
  color: var(--text-light);
}

.page-blog-how-to-register-at-hi888__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-how-to-register-at-hi888__faq-item .page-blog-how-to-register-at-hi888__faq-answer {
  padding: 0 25px 25px;
  background: #222222; /* Slightly darker background for answer */
  border-radius: 0 0 8px 8px;
  color: #cccccc;
}

.page-blog-how-to-register-at-hi888__faq-answer p {
  margin-bottom: 0;
  color: #cccccc;
}

/* Related Articles Section */
.page-blog-how-to-register-at-hi888__related-articles-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-top: 1px solid #333;
}

.page-blog-how-to-register-at-hi888__related-articles-title {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
}

.page-blog-how-to-register-at-hi888__article-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-how-to-register-at-hi888__article-card {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

.page-blog-how-to-register-at-hi888__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-register-at-hi888__article-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-how-to-register-at-hi888__article-card-content {
  padding: 20px;
}

.page-blog-how-to-register-at-hi888__article-card-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-blog-how-to-register-at-hi888__article-card-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-how-to-register-at-hi888__article-card-title a:hover {
  color: #1e87c0;
}

.page-blog-how-to-register-at-hi888__article-card-excerpt {
  font-size: 0.95em;
  color: #bbbbbb;
  margin-bottom: 15px;
}

.page-blog-how-to-register-at-hi888__article-card-date {
  font-size: 0.85em;
  color: #888888;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-register-at-hi888__main-title {
    font-size: clamp(26px, 4.5vw, 42px);
  }
  .page-blog-how-to-register-at-hi888__article-heading {
    font-size: 2em;
  }
  .page-blog-how-to-register-at-hi888__sub-heading {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-register-at-hi888 {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-how-to-register-at-hi888__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-how-to-register-at-hi888__hero-container {
    padding: 0 15px;
  }
  .page-blog-how-to-register-at-hi888__hero-image {
    margin-bottom: 20px;
  }
  .page-blog-how-to-register-at-hi888__main-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 15px;
  }
  .page-blog-how-to-register-at-hi888__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-blog-how-to-register-at-hi888__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-register-at-hi888__content-section,
  .page-blog-how-to-register-at-hi888__related-articles-section {
    padding: 40px 0;
  }
  .page-blog-how-to-register-at-hi888__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-blog-how-to-register-at-hi888__article-heading {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-blog-how-to-register-at-hi888__sub-heading {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
  }
  .page-blog-how-to-register-at-hi888__article-paragraph,
  .page-blog-how-to-register-at-hi888__list-item {
    font-size: 0.95em;
  }
  .page-blog-how-to-register-at-hi888__image-content {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-blog-how-to-register-at-hi888__faq-item summary.page-blog-how-to-register-at-hi888__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog-how-to-register-at-hi888__faq-answer {
    padding: 0 20px 20px;
  }
  .page-blog-how-to-register-at-hi888__related-articles-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-how-to-register-at-hi888__article-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-how-to-register-at-hi888__article-card-image {
    height: 180px;
  }
  .page-blog-how-to-register-at-hi888__article-card-title {
    font-size: 1.1em;
  }
}

/* Ensure all images are responsive and do not overflow */
.page-blog-how-to-register-at-hi888 img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-blog-how-to-register-at-hi888 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-how-to-register-at-hi888__hero-section,
  .page-blog-how-to-register-at-hi888__content-section,
  .page-blog-how-to-register-at-hi888__related-articles-section,
  .page-blog-how-to-register-at-hi888__container,
  .page-blog-how-to-register-at-hi888__article-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-how-to-register-at-hi888__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}