/* style/blog-how-to-quickly-register-and-login-ht368-official.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-dark: #0a0a0a;
  --button-login: #EA7C07;
  --border-color: #e0e0e0;
}

/* Base styles for the page content, adapting to dark body background */
.page-blog-how-to-quickly-register-and-login-ht368-official {
  color: var(--text-light); /* Light text for dark body background */
  background-color: var(--background-dark);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__btn-primary,
.page-blog-how-to-quickly-register-and-login-ht368-official__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__btn-primary {
  background-color: var(--button-login);
  color: var(--secondary-color);
  border: 2px solid var(--button-login);
}

.page-blog-how-to-quickly-register-and-login-ht368-official__btn-primary:hover {
  background-color: #e06c00;
  border-color: #e06c00;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-how-to-quickly-register-and-login-ht368-official__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-blog-how-to-quickly-register-and-login-ht368-official__btn-block {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--secondary-color); /* Light background for main content */
  color: var(--text-dark); /* Dark text on light background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-30px);
  position: relative;
  z-index: 2;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__sub-title {
  font-size: 1.6em;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-quickly-register-and-login-ht368-official__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__benefit-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-blog-how-to-quickly-register-and-login-ht368-official__benefit-title {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__faq-item {
  background-color: #f9f9f9;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: var(--text-dark);
  cursor: pointer;
  background-color: var(--secondary-color);
  transition: background-color 0.3s ease;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__faq-question:hover {
  background-color: #f0f0f0;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__faq-item details > summary {
  list-style: none;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-blog-how-to-quickly-register-and-login-ht368-official__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: var(--text-dark);
  border-top: 1px solid var(--border-color);
  background-color: #fcfcfc;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__faq-answer p {
  margin-top: 15px;
  margin-bottom: 0;
}

.page-blog-how-to-quickly-register-and-login-ht368-official__cta-buttons--bottom {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-how-to-quickly-register-and-login-ht368-official__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-how-to-quickly-register-and-login-ht368-official__section-title {
    font-size: 1.8em;
  }
  .page-blog-how-to-quickly-register-and-login-ht368-official__sub-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-quickly-register-and-login-ht368-official {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__hero-content {
    padding: 15px;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__hero-description {
    font-size: 1em;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__btn-primary,
  .page-blog-how-to-quickly-register-and-login-ht368-official__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__content-area {
    padding: 20px 15px;
    transform: translateY(-20px);
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__section-title {
    font-size: 1.6em;
    margin-top: 30px;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__sub-title {
    font-size: 1.2em;
    margin-top: 20px;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__paragraph {
    font-size: 1em;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 20px auto;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__benefits-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__benefit-item {
    padding: 20px;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__benefit-title {
    font-size: 1.2em;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__faq-question {
    padding: 15px 20px;
    font-size: 1.05em;
  }

  .page-blog-how-to-quickly-register-and-login-ht368-official__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

/* Dark background for sections where text needs to be light */
.page-blog-how-to-quickly-register-and-login-ht368-official__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

/* Light background for sections where text needs to be dark */
.page-blog-how-to-quickly-register-and-login-ht368-official__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

/* Ensure all images and video containers are responsive on mobile */
.page-blog-how-to-quickly-register-and-login-ht368-official__section,
.page-blog-how-to-quickly-register-and-login-ht368-official__card,
.page-blog-how-to-quickly-register-and-login-ht368-official__container,
.page-blog-how-to-quickly-register-and-login-ht368-official__video-section,
.page-blog-how-to-quickly-register-and-login-ht368-official__video-container,
.page-blog-how-to-quickly-register-and-login-ht368-official__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-blog-how-to-quickly-register-and-login-ht368-official__section,
  .page-blog-how-to-quickly-register-and-login-ht368-official__card,
  .page-blog-how-to-quickly-register-and-login-ht368-official__container,
  .page-blog-how-to-quickly-register-and-login-ht368-official__video-section,
  .page-blog-how-to-quickly-register-and-login-ht368-official__video-container,
  .page-blog-how-to-quickly-register-and-login-ht368-official__video-wrapper {
    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-quickly-register-and-login-ht368-official__hero-section {
    padding-top: 10px !important;
  }
}