/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

/* Body Layout */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  padding: 2rem;
  transition: background 0.5s ease;
}

/* Title */
h1 {
  font-size: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border-bottom: 2px solid #fff;
  padding-bottom: 0.5rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border-bottom: 2px solid #fff;
  padding-bottom: 0.5rem;
  text-align: center;
}

/* Links Container */
.links {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 800px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.links a[href="#"] {
  opacity: 0.6;
  cursor: not-allowed;
  border-style: dashed;
}

.links a[href="#"]:hover {
  color: #000000;
  background: none;
  transform: none;
}
.home {
  color: rgba(255, 255, 255, 0.571);
  transition: color 0.5s;
}

.home:hover {
  color: white;
}

/* Each Link Button */
.links a {
  text-decoration: none;
  color: #fff;
  border: 2px solid #fff;
  padding: 1rem;
  border-radius: 40px;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
}

/* Hover Effect */
.links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 0.3s ease;
  z-index: -1;
}

.links a:hover::before {
  left: 0;
}

.links a:hover {
  color: #000;
  transform: scale(1.05);
}

/* Footer */
footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
}

/* Fade-in Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.links a {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

/* Responsive Padding */
@media (max-width: 600px) {
  body {
    padding: 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  .links {
    gap: 0.8rem;
  }

  .links a {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}

.cursor {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
  z-index: 9999;
}
