/* style/blog-jjun88-account-security-guide.css */
:root {
  --jjun88-primary-color: #11A84E;
  --jjun88-secondary-color: #22C768;
  --jjun88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --jjun88-card-bg: #11271B;
  --jjun88-background: #08160F;
  --jjun88-text-main: #F2FFF6;
  --jjun88-text-secondary: #A7D9B8;
  --jjun88-border-color: #2E7A4E;
  --jjun88-glow-color: #57E38D;
  --jjun88-gold-color: #F2C14E;
  --jjun88-divider-color: #1E3A2A;
  --jjun88-deep-green: #0A4B2C;
}

/* body đã padding-top: var(--header-offset) từ shared.css; trang này không cần thêm */
.page-blog-jjun88-account-security-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--jjun88-text-main); /* Mặc định chữ sáng trên nền tối */
  background-color: var(--jjun88-background);
}

.page-blog-jjun88-account-security-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Nhỏ hơn để không bị đè bởi body padding-top */
  text-align: center;
  background-color: var(--jjun88-deep-green);
  overflow: hidden;
}

.page-blog-jjun88-account-security-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-jjun88-account-security-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Làm tối ảnh nền để chữ nổi bật */
}

.page-blog-jjun88-account-security-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
  color: var(--jjun88-text-main);
}

.page-blog-jjun88-account-security-guide__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--jjun88-text-main);
  line-height: 1.2;
}

.page-blog-jjun88-account-security-guide__description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 30px;
  color: var(--jjun88-text-secondary);
}

.page-blog-jjun88-account-security-guide__btn-primary,
.page-blog-jjun88-account-security-guide__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 10px;
  box-sizing: border-box;
}

.page-blog-jjun88-account-security-guide__btn-primary {
  background: var(--jjun88-button-gradient);
  color: var(--jjun88-text-main);
  border: none;
}

.page-blog-jjun88-account-security-guide__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-blog-jjun88-account-security-guide__btn-secondary {
  background: transparent;
  color: var(--jjun88-glow-color);
  border: 2px solid var(--jjun88-glow-color);
}

.page-blog-jjun88-account-security-guide__btn-secondary:hover {
  background: var(--jjun88-glow-color);
  color: var(--jjun88-background);
}

.page-blog-jjun88-account-security-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--jjun88-background);
  color: var(--jjun88-text-main);
}

.page-blog-jjun88-account-security-guide__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-jjun88-account-security-guide__section-title {
  font-size: 2.2rem;
  color: var(--jjun88-glow-color);
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-blog-jjun88-account-security-guide__sub-section-title {
  font-size: 1.8rem;
  color: var(--jjun88-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-jjun88-account-security-guide__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--jjun88-text-secondary);
}

.page-blog-jjun88-account-security-guide__paragraph .highlight {
  color: var(--jjun88-text-main);
  font-weight: bold;
}

.page-blog-jjun88-account-security-guide__image-text-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.page-blog-jjun88-account-security-guide__image-text-block:nth-child(even) {
  flex-direction: row-reverse;
}

.page-blog-jjun88-account-security-guide__image-text-block img {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  min-height: 200px;
  height: auto;
}

.page-blog-jjun88-account-security-guide__image-text-block p {
  flex: 2;
  min-width: 300px;
}

.page-blog-jjun88-account-security-guide__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  min-height: 200px;
}

.page-blog-jjun88-account-security-guide__bullet-list,
.page-blog-jjun88-account-security-guide__action-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-jjun88-account-security-guide__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--jjun88-text-secondary);
}

.page-blog-jjun88-account-security-guide__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--jjun88-glow-color);
  font-weight: bold;
  font-size: 1.2rem;
  top: 0;
}

.page-blog-jjun88-account-security-guide__card {
  background-color: var(--jjun88-card-bg);
  border: 1px solid var(--jjun88-border-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: var(--jjun88-text-main);
}

.page-blog-jjun88-account-security-guide__card--alert {
  background-color: var(--jjun88-deep-green);
  border-color: var(--jjun88-glow-color);
}

.page-blog-jjun88-account-security-guide__card-title {
  font-size: 1.5rem;
  color: var(--jjun88-glow-color);
  margin-bottom: 15px;
}

.page-blog-jjun88-account-security-guide__faq-list {
  margin-top: 40px;
}

.page-blog-jjun88-account-security-guide__faq-item {
  background-color: var(--jjun88-card-bg);
  border: 1px solid var(--jjun88-divider-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-jjun88-account-security-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--jjun88-text-main);
  cursor: pointer;
  background-color: var(--jjun88-deep-green);
  border-bottom: 1px solid var(--jjun88-divider-color);
  list-style: none; /* For details/summary */
}

.page-blog-jjun88-account-security-guide__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-blog-jjun88-account-security-guide__faq-question:hover {
  background-color: var(--jjun88-primary-color);
}

.page-blog-jjun88-account-security-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--jjun88-glow-color);
}

.page-blog-jjun88-account-security-guide__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: var(--jjun88-text-secondary);
  background-color: var(--jjun88-card-bg);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-jjun88-account-security-guide__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-jjun88-account-security-guide__main-title {
    font-size: 2rem;
  }

  .page-blog-jjun88-account-security-guide__description {
    font-size: 1rem;
  }

  .page-blog-jjun88-account-security-guide__btn-primary,
  .page-blog-jjun88-account-security-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    margin: 10px 0 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-jjun88-account-security-guide__hero-content .page-blog-jjun88-account-security-guide__btn-primary,
  .page-blog-jjun88-account-security-guide__hero-content .page-blog-jjun88-account-security-guide__btn-secondary {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-blog-jjun88-account-security-guide__content-area {
    padding: 40px 15px;
  }

  .page-blog-jjun88-account-security-guide__section-title {
    font-size: 1.8rem;
  }

  .page-blog-jjun88-account-security-guide__sub-section-title {
    font-size: 1.5rem;
  }

  .page-blog-jjun88-account-security-guide__paragraph {
    font-size: 1rem;
  }

  .page-blog-jjun88-account-security-guide__image-text-block {
    flex-direction: column;
    gap: 20px;
  }

  .page-blog-jjun88-account-security-guide__image-text-block img,
  .page-blog-jjun88-account-security-guide__image-text-block p {
    min-width: unset;
    width: 100%;
  }

  .page-blog-jjun88-account-security-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-jjun88-account-security-guide__section,
  .page-blog-jjun88-account-security-guide__card,
  .page-blog-jjun88-account-security-guide__container,
  .page-blog-jjun88-account-security-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-jjun88-account-security-guide__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-jjun88-account-security-guide__faq-answer {
    padding: 15px;
  }
}