/* style/blog-deep-dive-into-ku888-link-vao.css */

/* Variables */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --dark-bg-color: #1a1a2e; /* From shared.css body background */
  --text-on-dark: #ffffff;
  --text-on-light: #333333;
  --button-login: #EA7C07;
}

.page-blog-deep-dive-into-ku888-link-vao {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-on-dark); /* Default text color for the page content, assuming dark body bg */
  background-color: var(--dark-bg-color);
}

.page-blog-deep-dive-into-ku888-link-vao__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, body handles --header-offset */
  overflow: hidden;
  color: var(--text-on-dark);
  background-color: var(--dark-bg-color);
}

.page-blog-deep-dive-into-ku888-link-vao__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px;
  object-fit: cover;
  display: block;
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-deep-dive-into-ku888-link-vao__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-blog-deep-dive-into-ku888-link-vao__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-deep-dive-into-ku888-link-vao__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-blog-deep-dive-into-ku888-link-vao__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-deep-dive-into-ku888-link-vao__btn-primary,
.page-blog-deep-dive-into-ku888-link-vao__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;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-deep-dive-into-ku888-link-vao__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-deep-dive-into-ku888-link-vao__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-blog-deep-dive-into-ku888-link-vao__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-deep-dive-into-ku888-link-vao__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-blog-deep-dive-into-ku888-link-vao__btn-full-width {
  width: 100%;
  max-width: 300px; /* Limit max width for better aesthetics */
  margin-top: 20px;
}

.page-blog-deep-dive-into-ku888-link-vao__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--secondary-color); /* Light background for main content */
  color: var(--text-on-light); /* Dark text on light background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -50px; /* Overlap with hero section slightly */
  position: relative;
  z-index: 2;
}

.page-blog-deep-dive-into-ku888-link-vao__section-block {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.page-blog-deep-dive-into-ku888-link-vao__section-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-blog-deep-dive-into-ku888-link-vao__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: bold;
}

.page-blog-deep-dive-into-ku888-link-vao__sub-title {
  font-size: 1.6em;
  color: #555;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-deep-dive-into-ku888-link-vao__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--text-on-light);
}

.page-blog-deep-dive-into-ku888-link-vao__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.page-blog-deep-dive-into-ku888-link-vao__list,
.page-blog-deep-dive-into-ku888-link-vao__numbered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-on-light);
}

.page-blog-deep-dive-into-ku888-link-vao__numbered-list {
  list-style-type: decimal;
}

.page-blog-deep-dive-into-ku888-link-vao__list-item {
  margin-bottom: 10px;
}

.page-blog-deep-dive-into-ku888-link-vao__faq-list {
  margin-top: 30px;
}

.page-blog-deep-dive-into-ku888-link-vao__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-deep-dive-into-ku888-link-vao__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 25px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.15em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-blog-deep-dive-into-ku888-link-vao__faq-item summary:hover {
  background-color: #1e87c0;
}

.page-blog-deep-dive-into-ku888-link-vao__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-deep-dive-into-ku888-link-vao__faq-qtext {
  flex-grow: 1;
}

.page-blog-deep-dive-into-ku888-link-vao__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-deep-dive-into-ku888-link-vao__faq-item[open] .page-blog-deep-dive-into-ku888-link-vao__faq-toggle {
  content: "−";
}

.page-blog-deep-dive-into-ku888-link-vao__faq-answer {
  padding: 20px 25px;
  background-color: var(--secondary-color);
  color: var(--text-on-light);
  border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-deep-dive-into-ku888-link-vao__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

  .page-blog-deep-dive-into-ku888-link-vao__section-title {
    font-size: 2em;
  }

  .page-blog-deep-dive-into-ku888-link-vao__sub-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-blog-deep-dive-into-ku888-link-vao__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-deep-dive-into-ku888-link-vao__hero-image {
    margin-bottom: 20px;
  }

  .page-blog-deep-dive-into-ku888-link-vao__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }

  .page-blog-deep-dive-into-ku888-link-vao__hero-description {
    font-size: 1em;
  }

  .page-blog-deep-dive-into-ku888-link-vao__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-deep-dive-into-ku888-link-vao__btn-primary,
  .page-blog-deep-dive-into-ku888-link-vao__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-deep-dive-into-ku888-link-vao__content-area {
    padding: 30px 15px;
    margin-top: -30px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-deep-dive-into-ku888-link-vao__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-deep-dive-into-ku888-link-vao__sub-title {
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-deep-dive-into-ku888-link-vao__text-block,
  .page-blog-deep-dive-into-ku888-link-vao__list-item {
    font-size: 0.95em;
  }

  .page-blog-deep-dive-into-ku888-link-vao__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px 0;
  }

  .page-blog-deep-dive-into-ku888-link-vao__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-deep-dive-into-ku888-link-vao__faq-answer {
    padding: 15px 20px;
  }

  .page-blog-deep-dive-into-ku888-link-vao__section-block,
  .page-blog-deep-dive-into-ku888-link-vao__card,
  .page-blog-deep-dive-into-ku888-link-vao__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* Color Contrast Fixes (if needed) */
.page-blog-deep-dive-into-ku888-link-vao__dark-bg {
  background: var(--dark-bg-color);
  color: var(--text-on-dark);
}

.page-blog-deep-dive-into-ku888-link-vao__light-bg {
  background: var(--secondary-color);
  color: var(--text-on-light);
}

.page-blog-deep-dive-into-ku888-link-vao__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark body */
  color: var(--text-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Ensure all links within content area are readable */
.page-blog-deep-dive-into-ku888-link-vao__content-area a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-blog-deep-dive-into-ku888-link-vao__content-area a:hover {
  color: #1e87c0;
}