/* Dark Glassmorphism Styles for AntNetwork Blog */
/* Add any custom overrides here */

/* Nav link emojis + animations */
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #ccc;
  text-decoration: none;
  opacity: 0;
  animation: slideFadeIn 0.4s forwards ease-out;
}
.nav-link:nth-of-type(1) { animation-delay: 0.1s; }
.nav-link:nth-of-type(2) { animation-delay: 0.2s; }
.nav-link:nth-of-type(3) { animation-delay: 0.3s; }
.nav-link:nth-of-type(4) { animation-delay: 0.4s; }

@keyframes slideFadeIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Glass card for posts */
.card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 2rem;
  transition: transform .3s, box-shadow .3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

/* Glass page headers */
.page-header {
  max-width: 800px;
  margin: 2rem auto;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 2rem;
  color: #fff;
}
