/* style/blog-huong-dan-dang-ky-nem88.css */

:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --text-main: #1F2D3D;
  --text-black: #000000;
  --background-light: #F4F7FB;
  --card-bg: #FFFFFF;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
}

.page-blog-huong-dan-dang-ky-nem88 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background-light);
}

.page-blog-huong-dan-dang-ky-nem88__hero-section {
  padding-top: 10px; /* Adhering to the 10px top padding rule */
  padding-bottom: 60px;
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-huong-dan-dang-ky-nem88__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 20px;
}

.page-blog-huong-dan-dang-ky-nem88__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-blog-huong-dan-dang-ky-nem88__main-title {
  font-size: 2.8em;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-huong-dan-dang-ky-nem88__hero-description {
  font-size: 1.1em;
  color: var(--text-main);
  margin-bottom: 30px;
}

.page-blog-huong-dan-dang-ky-nem88__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-blog-huong-dan-dang-ky-nem88__btn-primary,
.page-blog-huong-dan-dang-ky-nem88__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-huong-dan-dang-ky-nem88__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.page-blog-huong-dan-dang-ky-nem88__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-blog-huong-dan-dang-ky-nem88__btn-secondary {
  background: var(--card-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-huong-dan-dang-ky-nem88__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.2);
}

.page-blog-huong-dan-dang-ky-nem88__hero-image {
  flex: 1 1 40%;
  text-align: center;
  min-width: 300px;
}

.page-blog-huong-dan-dang-ky-nem88__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: block;
}

.page-blog-huong-dan-dang-ky-nem88__content-area,
.page-blog-huong-dan-dang-ky-nem88__guide-section,
.page-blog-huong-dan-dang-ky-nem88__tips-section,
.page-blog-huong-dan-dang-ky-nem88__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-light);
  color: var(--text-main);
}

.page-blog-huong-dan-dang-ky-nem88__section-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-blog-huong-dan-dang-ky-nem88__section-title {
  font-size: 2.2em;
  color: var(--text-black);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-blog-huong-dan-dang-ky-nem88__section-description {
  font-size: 1.1em;
  color: var(--text-main);
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-huong-dan-dang-ky-nem88__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-huong-dan-dang-ky-nem88__feature-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-huong-dan-dang-ky-nem88__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.page-blog-huong-dan-dang-ky-nem88__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(47, 107, 255, 0.1);
}

.page-blog-huong-dan-dang-ky-nem88__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-blog-huong-dan-dang-ky-nem88__feature-title {
  font-size: 1.5em;
  color: var(--text-black);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-huong-dan-dang-ky-nem88__feature-text {
  font-size: 1em;
  color: var(--text-main);
}

.page-blog-huong-dan-dang-ky-nem88__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.page-blog-huong-dan-dang-ky-nem88__step-item {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.page-blog-huong-dan-dang-ky-nem88__step-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.page-blog-huong-dan-dang-ky-nem88__step-text {
  font-size: 1.05em;
  color: var(--text-main);
  margin-bottom: 20px;
}

.page-blog-huong-dan-dang-ky-nem88__step-list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-blog-huong-dan-dang-ky-nem88__step-list li {
  margin-bottom: 8px;
  font-size: 1em;
}

.page-blog-huong-dan-dang-ky-nem88__step-list strong {
  color: var(--text-black);
}

.page-blog-huong-dan-dang-ky-nem88__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: block;
}

.page-blog-huong-dan-dang-ky-nem88__tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-huong-dan-dang-ky-nem88__tip-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.page-blog-huong-dan-dang-ky-nem88__tip-title {
  font-size: 1.4em;
  color: var(--text-black);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-huong-dan-dang-ky-nem88__tip-text {
  font-size: 0.95em;
  color: var(--text-main);
}

.page-blog-huong-dan-dang-ky-nem88__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-huong-dan-dang-ky-nem88__faq-item {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.page-blog-huong-dan-dang-ky-nem88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--text-black);
  cursor: pointer;
  background-color: var(--card-bg);
  border-bottom: 1px solid var(--border-color);
  list-style: none;
}

.page-blog-huong-dan-dang-ky-nem88__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-huong-dan-dang-ky-nem88__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-blog-huong-dan-dang-ky-nem88__faq-item[open] .page-blog-huong-dan-dang-ky-nem88__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-huong-dan-dang-ky-nem88__faq-answer {
  padding: 15px 25px 25px;
  font-size: 1em;
  color: var(--text-main);
  border-top: 1px solid var(--border-color);
}

.page-blog-huong-dan-dang-ky-nem88__faq-answer p {
  margin-bottom: 0;
}

.page-blog-huong-dan-dang-ky-nem88__cta-bottom-section {
  background: var(--primary-color);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-blog-huong-dan-dang-ky-nem88__cta-bottom-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-huong-dan-dang-ky-nem88__cta-bottom-title {
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-blog-huong-dan-dang-ky-nem88__cta-bottom-description {
  font-size: 1.2em;
  color: #f0f8ff;
  margin-bottom: 40px;
}

/* General image responsive styles */
.page-blog-huong-dan-dang-ky-nem88 img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-blog-huong-dan-dang-ky-nem88 {
    font-size: 15px;
  }

  .page-blog-huong-dan-dang-ky-nem88__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-blog-huong-dan-dang-ky-nem88__hero-container {
    flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
  }

  .page-blog-huong-dan-dang-ky-nem88__hero-content {
    flex: none;
    width: 100%;
  }

  .page-blog-huong-dan-dang-ky-nem88__main-title {
    font-size: 2em;
    text-align: center;
  }

  .page-blog-huong-dan-dang-ky-nem88__hero-description {
    font-size: 1em;
    text-align: center;
  }

  .page-blog-huong-dan-dang-ky-nem88__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-huong-dan-dang-ky-nem88__btn-primary,
  .page-blog-huong-dan-dang-ky-nem88__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-blog-huong-dan-dang-ky-nem88__hero-image {
    flex: none;
    width: 100%;
  }

  .page-blog-huong-dan-dang-ky-nem88__content-area,
  .page-blog-huong-dan-dang-ky-nem88__guide-section,
  .page-blog-huong-dan-dang-ky-nem88__tips-section,
  .page-blog-huong-dan-dang-ky-nem88__faq-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-huong-dan-dang-ky-nem88__section-title {
    font-size: 1.8em;
  }

  .page-blog-huong-dan-dang-ky-nem88__section-description {
    font-size: 0.95em;
  }

  .page-blog-huong-dan-dang-ky-nem88__features-grid,
  .page-blog-huong-dan-dang-ky-nem88__tips-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-blog-huong-dan-dang-ky-nem88__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }

  .page-blog-huong-dan-dang-ky-nem88__feature-title {
    font-size: 1.3em;
  }

  .page-blog-huong-dan-dang-ky-nem88__step-item {
    padding: 30px 20px;
  }

  .page-blog-huong-dan-dang-ky-nem88__step-title {
    font-size: 1.5em;
  }

  .page-blog-huong-dan-dang-ky-nem88__step-text,
  .page-blog-huong-dan-dang-ky-nem88__step-list li {
    font-size: 0.95em;
  }

  .page-blog-huong-dan-dang-ky-nem88__tip-title {
    font-size: 1.2em;
  }

  .page-blog-huong-dan-dang-ky-nem88__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-huong-dan-dang-ky-nem88__faq-answer {
    padding: 10px 20px 20px;
    font-size: 0.95em;
  }

  .page-blog-huong-dan-dang-ky-nem88__cta-bottom-section {
    padding: 60px 15px;
  }

  .page-blog-huong-dan-dang-ky-nem88__cta-bottom-title {
    font-size: 2em;
  }

  .page-blog-huong-dan-dang-ky-nem88__cta-bottom-description {
    font-size: 1em;
  }

  .page-blog-huong-dan-dang-ky-nem88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-huong-dan-dang-ky-nem88__hero-container,
  .page-blog-huong-dan-dang-ky-nem88__content-area,
  .page-blog-huong-dan-dang-ky-nem88__guide-section,
  .page-blog-huong-dan-dang-ky-nem88__tips-section,
  .page-blog-huong-dan-dang-ky-nem88__faq-section,
  .page-blog-huong-dan-dang-ky-nem88__cta-bottom-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}