/* Sitenano footer credit — NMF mirror */
.footer-credit {
  background: #242666;
  padding: 8px 0 28px;
}

.footer-credit-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

.footer-credit-ornament {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(104, 109, 243, 0.45), transparent);
  position: relative;
}

.footer-credit-ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: #686df3;
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(104, 109, 243, 0.5);
}

.footer-credit-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 32px;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(104, 109, 243, 0.08) 100%);
  border: 1px solid rgba(104, 109, 243, 0.22);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-credit-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 8px;
}

.footer-credit-line-by {
  margin-top: 2px;
}

.footer-credit-text a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-credit-text a:hover {
  color: #9b9ef7;
  text-shadow: 0 0 12px rgba(104, 109, 243, 0.35);
}

.footer-credit-sep {
  color: rgba(255, 255, 255, 0.35);
}

.footer-credit-by {
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

.footer-credit-brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-decoration: none;
  background: linear-gradient(90deg, #9b9ef7, #c4c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.footer-credit-brand:hover {
  opacity: 0.85;
  filter: brightness(1.15);
}

@media (max-width: 768px) {
  .footer-credit-ornament {
    display: none;
  }

  .footer-credit-text {
    padding: 12px 18px;
    font-size: 0.8rem;
    border-radius: 16px;
  }
}
