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

.page-privacy-policy {
  background-color: var(--k9k99-background);
  color: var(--k9k99-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body already handles padding-top */
  background-color: var(--k9k99-deep-green);
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-privacy-policy__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 800px;
  padding: 20px;
  z-index: 10;
  color: var(--k9k99-text-main);
}

.page-privacy-policy__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--k9k99-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--k9k99-text-main);
  margin-bottom: 30px;
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--k9k99-background);
  border-radius: 8px;
}

.page-privacy-policy__section-title {
  font-size: 2.2rem;
  color: var(--k9k99-primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 700;
  border-bottom: 2px solid var(--k9k99-divider);
  padding-bottom: 10px;
}

.page-privacy-policy__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--k9k99-text-main);
}

.page-privacy-policy__text-block strong {
  color: var(--k9k99-text-secondary);
}

.page-privacy-policy__image-inline {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--k9k99-border);
}

.page-privacy-policy__contact-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-privacy-policy__contact-item {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--k9k99-text-main);
}

.page-privacy-policy__contact-item strong {
  color: var(--k9k99-primary-color);
}

.page-privacy-policy__contact-item a {
  color: var(--k9k99-secondary-color);
  text-decoration: none;
}

.page-privacy-policy__contact-item a:hover {
  text-decoration: underline;
  color: var(--k9k99-gold);
}

/* 智能颜色选择器 */
.page-privacy-policy__dark-section {
  background: var(--k9k99-background);
  color: var(--k9k99-text-main);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-privacy-policy__hero-content {
    position: static;
    transform: none;
    padding: 20px;
    text-align: center;
  }

  .page-privacy-policy__main-title {
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .page-privacy-policy__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-privacy-policy__content-area {
    padding: 30px 15px;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__text-block,
  .page-privacy-policy__contact-item {
    font-size: 1rem;
  }

  /* Images responsive */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container,
  .page-privacy-policy__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-privacy-policy__hero-image-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-privacy-policy__hero-image {
    filter: brightness(0.8); /* Less darkening on mobile if content is below */
  }

  /* No video section on this page, but if there were: */
  .page-privacy-policy__video-section {
    padding-top: 10px !important;
  }

  /* No buttons on this page, but if there were: */
  .page-privacy-policy__cta-button,
  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary,
  .page-privacy-policy a[class*="button"],
  .page-privacy-policy 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-privacy-policy__cta-buttons,
  .page-privacy-policy__button-group,
  .page-privacy-policy__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;
  }
}