@keyframes flowAndDrift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(-15px, 10px, 0) rotate(2deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}
.anime-floating-circle {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(152, 193, 217, 0.4), rgba(224, 251, 252, 0.2));
  border-radius: 50%;
  filter: blur(20px);
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: -1;
  animation: flowAndDrift 8s ease-in-out infinite;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #fcfaf8;
  color: #2d3436;
  line-height: 1.6;
}

.hero-section {
  position: relative;
  padding: 60px 0;
  max-width: 650px;
  margin: 0 auto;
}

.link-grid {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.directory-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.directory-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.9);
}
.directory-card h3 {
  margin: 0;
  font-size: 1.2rem;
}
.directory-card span {
  font-size: 0.85rem;
  color: #888;
}

/*# sourceMappingURL=styles.css.map */