/* ===== 隐私政策页面专属样式 ===== */
.page-privacy {
  --privacy-bg: #2C2C2C;
  --privacy-text: #FFFFFF;
  --privacy-muted: rgba(255, 255, 255, 0.7);
  --privacy-accent: #FF6B35;
  --privacy-card-bg: rgba(255, 255, 255, 0.05);
  --privacy-border: rgba(255, 255, 255, 0.08);
  --privacy-divider: rgba(255, 107, 53, 0.3);
  --privacy-gap: 2rem;
  display: block;
  width: 100%;
  max-width: 100%;
  background: var(--privacy-bg);
  color: var(--privacy-text);
  font-family: var(--font-body, 'Inter', sans-serif);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== 首屏英雄区（含背景图） ===== */
.privacy-hero {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.privacy-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,44,44,0.85) 0%, rgba(44,44,44,0.6) 100%);
  z-index: 1;
}

.privacy-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 0 1.5rem;
  text-align: left;
}

.privacy-hero .breadcrumb {
  color: var(--privacy-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.privacy-hero .breadcrumb a {
  color: var(--privacy-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.privacy-hero .breadcrumb a:hover {
  opacity: 0.7;
}

.privacy-hero .breadcrumb-sep {
  color: var(--privacy-muted);
}

.privacy-hero-title {
  font-family: var(--font-heading, 'Montserrat Black', sans-serif);
  font-size: 2rem;
  font-weight: 900;
  margin: 0 0 0.5rem;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.privacy-hero-desc {
  font-size: 1rem;
  color: var(--privacy-muted);
  max-width: 600px;
  margin: 0;
}

/* ===== 内容主体 ===== */
.privacy-body {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.privacy-card {
  background: var(--privacy-card-bg);
  border: 1px solid var(--privacy-border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

/* ===== 分区样式 ===== */
.privacy-section {
  margin-bottom: 0;
}

.privacy-section-title {
  font-family: var(--font-heading, 'Montserrat Black', sans-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 0.75rem;
  border-left: 4px solid var(--privacy-accent);
}

.privacy-text {
  font-size: 1rem;
  color: var(--privacy-text);
  margin: 0 0 1rem;
  line-height: 1.7;
}

.privacy-text:last-child {
  margin-bottom: 0;
}

/* ===== 分隔线 ===== */
.privacy-divider {
  width: 100%;
  height: 1px;
  background: var(--privacy-divider);
  margin: 2rem 0;
  opacity: 0.5;
}

/* ===== 相关链接区 ===== */
.privacy-related {
  margin-top: 0.5rem;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.privacy-related-label {
  font-size: 0.875rem;
  color: var(--privacy-muted);
  margin: 0;
  font-weight: 600;
}

.privacy-related-link {
  font-size: 0.875rem;
  color: var(--color-secondary, #1E88E5);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.privacy-related-link:hover {
  color: var(--color-secondary-light, #64B5F6);
  border-color: currentColor;
}

/* ===== 移动端适配 ===== */
@media (max-width: 640px) {
  .privacy-hero {
    height: 200px;
  }

  .privacy-hero-title {
    font-size: 1.5rem;
  }

  .privacy-hero-desc {
    font-size: 0.875rem;
  }

  .privacy-body {
    padding: 1.5rem 1rem 2rem;
  }

  .privacy-card {
    padding: 1.5rem 1rem;
    border-radius: 10px;
  }

  .privacy-section-title {
    font-size: 1.25rem;
    padding-left: 0.6rem;
  }

  .privacy-text {
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .privacy-divider {
    margin: 1.5rem 0;
  }

  .privacy-related {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* ===== 宽屏优化 ===== */
@media (min-width: 1024px) {
  .privacy-hero {
    height: 320px;
  }

  .privacy-hero-title {
    font-size: 2.5rem;
  }

  .privacy-body {
    padding: 3rem 1.5rem 4rem;
  }

  .privacy-card {
    padding: 2.5rem 2.5rem;
  }
}
