/* ════════════════════════════════════════════════════════════════════
   HIKARI FOOTER — PREMIUM COMPACT
   Uses base.css variables
   ════════════════════════════════════════════════════════════════════ */

@import url('base.css');

.hk-footer {
  margin-top: auto;
  padding: 16px 20px 14px;
  background: rgba(8, 8, 14, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  position: relative;
}

.hk-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(520px, 70%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.4), transparent);
}

.hk-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.hk-footer-links a {
  color: #9a9cbf;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hk-footer-links a i {
  font-size: 0.78em;
  opacity: 0.6;
  transition: transform 0.2s var(--ease);
}

.hk-footer-links a:hover {
  color: #fff;
  background: rgba(108, 99, 255, 0.13);
  border-color: rgba(108, 99, 255, 0.22);
  transform: translateY(-1px);
}

.hk-footer-links a:hover i {
  transform: scale(1.08);
}

.hk-footer-sep {
  color: #2e2e42;
  font-size: 0.65rem;
  user-select: none;
}

.hk-footer-copy {
  font-size: 0.72rem;
  color: #6b6d8a;
  line-height: 1.6;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hk-footer-copy strong {
  color: #a0a3c8;
  font-weight: 700;
}

.hk-footer-copy br {
  display: block;
  content: "";
  margin-top: 2px;
}

@media (max-width: 520px) {
  .hk-footer {
    padding: 14px 16px 12px;
  }
  .hk-footer-links a {
    font-size: 0.74rem;
    padding: 4px 9px;
  }
}