/* =====================================================
   Legal Pages — 条款/隐私/免责/Cookie 共享样式
   ===================================================== */

/* Hero Banner */
.hk-legal-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hk-legal-hero__bg {
  position: absolute;
  inset: 0;
  background: no-repeat center center;
  background-size: cover;
  opacity: 0.30;
  filter: grayscale(100%);
  transform: scale(1);
  animation: hkLegalHeroZoom 10s ease-in-out infinite;
}

@keyframes hkLegalHeroZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.hk-legal-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.45) 0%, rgba(10,10,15,0.92) 100%);
}

.hk-legal-hero__title {
  position: relative;
  z-index: 1;
  font-size: 46px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 6px;
  margin-top: 80px;
  text-align: center;
}

/* Content Container */
.hk-legal-main {
  background: #161619;
  padding: 60px 0 90px;
}

.hk-legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  font-size: 15px;
}

/* Meta (last updated) */
.hk-legal-meta {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}

/* Headings */
.hk-legal-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin: 48px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hk-legal-content h2:first-of-type {
  margin-top: 0;
}

.hk-legal-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin: 32px 0 14px;
}

.hk-legal-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  margin: 24px 0 10px;
}

/* Paragraphs */
.hk-legal-content p {
  margin: 0 0 16px;
}

/* Lists */
.hk-legal-content ul,
.hk-legal-content ol {
  margin: 0 0 18px;
  padding-left: 24px;
}

.hk-legal-content li {
  margin-bottom: 8px;
}

.hk-legal-content li::marker {
  color: var(--hk-primary, #d4a20d);
}

/* Highlight block */
.hk-legal-highlight {
  border-left: 3px solid var(--hk-primary, #d4a20d);
  background: rgba(212,162,13,0.06);
  padding: 18px 22px;
  border-radius: 0 var(--hk-radius-md, 8px) var(--hk-radius-md, 8px) 0;
  margin: 24px 0;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.8;
}

/* Table */
.hk-legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.hk-legal-content th,
.hk-legal-content td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hk-legal-content th {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  background: rgba(255,255,255,0.03);
}

/* Links */
.hk-legal-content a {
  color: var(--hk-primary, #d4a20d);
  text-decoration: none;
  transition: color var(--hk-transition-fast, 0.2s ease);
}

.hk-legal-content a:hover {
  color: var(--hk-primary-light, #ffce3c);
  text-decoration: underline;
}

/* Strong emphasis */
.hk-legal-content strong {
  color: rgba(255,255,255,0.92);
}

/* Cookie Preferences Panel (embedded in cookie.html) */
.hk-legal-cookie-panel {
  margin-top: 40px;
  padding: 28px;
  border-radius: var(--hk-radius-lg, 16px);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.hk-legal-cookie-panel__title {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin: 0 0 20px;
}

/* Light theme overrides */
[data-theme="light"] .hk-legal-main {
  background: #f5f5f7;
}

[data-theme="light"] .hk-legal-content {
  color: rgba(0,0,0,0.72);
}

[data-theme="light"] .hk-legal-meta {
  color: rgba(0,0,0,0.45);
  border-bottom-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .hk-legal-content h2 {
  color: rgba(0,0,0,0.88);
  border-bottom-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .hk-legal-content h3 {
  color: rgba(0,0,0,0.82);
}

[data-theme="light"] .hk-legal-content h4 {
  color: rgba(0,0,0,0.78);
}

[data-theme="light"] .hk-legal-content strong {
  color: rgba(0,0,0,0.88);
}

[data-theme="light"] .hk-legal-highlight {
  background: rgba(212,162,13,0.08);
  color: rgba(0,0,0,0.78);
}

[data-theme="light"] .hk-legal-content th {
  color: rgba(0,0,0,0.85);
  background: rgba(0,0,0,0.03);
}

[data-theme="light"] .hk-legal-content td {
  border-bottom-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .hk-legal-cookie-panel {
  border-color: rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
}

[data-theme="light"] .hk-legal-cookie-panel__title {
  color: rgba(0,0,0,0.88);
}

/* Responsive */
@media (max-width: 768px) {
  .hk-legal-hero {
    min-height: 260px;
  }
  .hk-legal-hero__title {
    font-size: 30px;
    letter-spacing: 3px;
    margin-top: 60px;
  }
  .hk-legal-main {
    padding: 40px 0 60px;
  }
  .hk-legal-content {
    font-size: 14px;
  }
  .hk-legal-content h2 {
    font-size: 22px;
  }
  .hk-legal-content h3 {
    font-size: 18px;
  }
}
