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

/* body đã padding-top: var(--header-offset) từ shared.css, không cần thêm ở đây */
.page-blog-bigboss-code-unlocking-secrets {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Text Main: #F2FFF6 */
  background-color: var(--bg-primary); /* Background: #08160F */
}

.page-blog-bigboss-code-unlocking-secrets__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first section */
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-bigboss-code-unlocking-secrets__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-blog-bigboss-code-unlocking-secrets__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.page-blog-bigboss-code-unlocking-secrets__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: var(--gold-color); /* Gold: #F2C14E */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-bigboss-code-unlocking-secrets__hero-description {
  font-size: 1.2em;
  color: var(--text-main); /* Text Main: #F2FFF6 */
  margin-bottom: 30px;
}

.page-blog-bigboss-code-unlocking-secrets__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-bigboss-code-unlocking-secrets__btn-primary {
  background: var(--button-gradient); /* Button: linear-gradient(180deg, #2AD16F 0%, #13994A 100%) */
  color: var(--text-main); /* Text Main: #F2FFF6 */
  border: none;
}

.page-blog-bigboss-code-unlocking-secrets__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-bigboss-code-unlocking-secrets__btn-secondary {
  background: none;
  color: var(--primary-color); /* Main color: #11A84E */
  border: 2px solid var(--primary-color); /* Main color: #11A84E */
}

.page-blog-bigboss-code-unlocking-secrets__btn-secondary:hover {
  background: rgba(var(--primary-color), 0.1);
  color: var(--glow-color); /* Glow: #57E38D */
}

.page-blog-bigboss-code-unlocking-secrets__section {
  padding: 80px 20px;
  box-sizing: border-box;
}

.page-blog-bigboss-code-unlocking-secrets__dark-section {
  background-color: var(--card-bg); /* Card B G: #11271B */
  color: var(--text-main); /* Text Main: #F2FFF6 */
}

.page-blog-bigboss-code-unlocking-secrets__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-bigboss-code-unlocking-secrets__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: var(--gold-color); /* Gold: #F2C14E */
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-bigboss-code-unlocking-secrets__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  color: var(--secondary-color); /* Auxiliary color: #22C768 */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-bigboss-code-unlocking-secrets__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-secondary); /* Text Secondary: #A7D9B8 */
}

.page-blog-bigboss-code-unlocking-secrets__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block; /* Ensure it behaves as a block element */
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-bigboss-code-unlocking-secrets__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-blog-bigboss-code-unlocking-secrets__content-wrapper .page-blog-bigboss-code-unlocking-secrets__image {
  flex: 1;
  max-width: 50%;
}

.page-blog-bigboss-code-unlocking-secrets__content-wrapper .page-blog-bigboss-code-unlocking-secrets__text-content {
  flex: 1;
  max-width: 50%;
}

.page-blog-bigboss-code-unlocking-secrets__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-secondary); /* Text Secondary: #A7D9B8 */
}

.page-blog-bigboss-code-unlocking-secrets__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-blog-bigboss-code-unlocking-secrets__list-item strong {
  color: var(--text-main); /* Text Main: #F2FFF6 */
}

/* FAQ Section */
.page-blog-bigboss-code-unlocking-secrets__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-bigboss-code-unlocking-secrets__faq-item {
  background-color: var(--deep-green-color); /* Deep Green: #0A4B2C */
  border: 1px solid var(--border-color); /* Border: #2E7A4E */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main); /* Text Main: #F2FFF6 */
}

.page-blog-bigboss-code-unlocking-secrets__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15em;
  color: var(--gold-color); /* Gold: #F2C14E */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-bigboss-code-unlocking-secrets__faq-question:hover {
  background-color: rgba(var(--primary-color), 0.1);
}

.page-blog-bigboss-code-unlocking-secrets__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--glow-color); /* Glow: #57E38D */
}

.page-blog-bigboss-code-unlocking-secrets__faq-item[open] .page-blog-bigboss-code-unlocking-secrets__faq-question {
  background-color: var(--primary-color); /* Main color: #11A84E */
  color: var(--text-main);
}

.page-blog-bigboss-code-unlocking-secrets__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--text-secondary); /* Text Secondary: #A7D9B8 */
}

.page-blog-bigboss-code-unlocking-secrets__faq-answer p {
  margin: 0;
}

/* Hide default details marker */
.page-blog-bigboss-code-unlocking-secrets__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-blog-bigboss-code-unlocking-secrets__faq-item summary::marker {
  display: none;
}

/* Conclusion Section */
.page-blog-bigboss-code-unlocking-secrets__conclusion-section .page-blog-bigboss-code-unlocking-secrets__cta-button {
  margin-top: 30px;
  display: block;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-bigboss-code-unlocking-secrets__hero-content {
    padding: 30px;
  }
  .page-blog-bigboss-code-unlocking-secrets__section {
    padding: 60px 15px;
  }
  .page-blog-bigboss-code-unlocking-secrets__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-blog-bigboss-code-unlocking-secrets__content-wrapper .page-blog-bigboss-code-unlocking-secrets__image,
  .page-blog-bigboss-code-unlocking-secrets__content-wrapper .page-blog-bigboss-code-unlocking-secrets__text-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-bigboss-code-unlocking-secrets {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-bigboss-code-unlocking-secrets__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog-bigboss-code-unlocking-secrets__hero-content {
    padding: 20px;
  }
  .page-blog-bigboss-code-unlocking-secrets__main-title {
    font-size: 2em; /* Adjusted for mobile */
  }
  .page-blog-bigboss-code-unlocking-secrets__hero-description {
    font-size: 1em;
  }
  .page-blog-bigboss-code-unlocking-secrets__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-bigboss-code-unlocking-secrets__sub-title {
    font-size: 1.2em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-blog-bigboss-code-unlocking-secrets__text-block,
  .page-blog-bigboss-code-unlocking-secrets__list-item {
    font-size: 1em;
  }

  /* Mobile image adaptation */
  .page-blog-bigboss-code-unlocking-secrets img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  /* Mobile container adaptation */
  .page-blog-bigboss-code-unlocking-secrets__section,
  .page-blog-bigboss-code-unlocking-secrets__container,
  .page-blog-bigboss-code-unlocking-secrets__hero-section,
  .page-blog-bigboss-code-unlocking-secrets__hero-content,
  .page-blog-bigboss-code-unlocking-secrets__content-wrapper,
  .page-blog-bigboss-code-unlocking-secrets__text-content,
  .page-blog-bigboss-code-unlocking-secrets__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Mobile button adaptation */
  .page-blog-bigboss-code-unlocking-secrets__cta-button,
  .page-blog-bigboss-code-unlocking-secrets__btn-primary,
  .page-blog-bigboss-code-unlocking-secrets__btn-secondary,
  .page-blog-bigboss-code-unlocking-secrets a[class*="button"],
  .page-blog-bigboss-code-unlocking-secrets a[class*="btn"] {
    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-bigboss-code-unlocking-secrets__cta-buttons,
  .page-blog-bigboss-code-unlocking-secrets__button-group,
  .page-blog-bigboss-code-unlocking-secrets__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }
  .page-blog-bigboss-code-unlocking-secrets__content-wrapper--reverse-mobile {
    flex-direction: column-reverse;
  }
}

/* Specific contrast adjustments */
.page-blog-bigboss-code-unlocking-secrets__hero-content p {
  color: var(--text-main); /* Ensure hero description is light */
}

.page-blog-bigboss-code-unlocking-secrets__text-block a {
  color: var(--glow-color); /* Links in text blocks */
  text-decoration: underline;
}

.page-blog-bigboss-code-unlocking-secrets__text-block a:hover {
  color: var(--gold-color);
}