/* TERMINAL FOOTER COMPONENT */
.terminal-footer {
  width: 100%;
  padding: 30px 10%;
  background: #05070e;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 10;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left, .footer-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-container .divider {
  color: rgba(255, 255, 255, 0.05);
}

.green-text {
  color: var(--accent-emerald);
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.2);
}

.footer-blog-link {
  color: var(--accent-violet);
  letter-spacing: 1.5px;
  transition: var(--transition-normal);
}

.footer-blog-link:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}
