/* Global Reset */
body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #0a0a0a;
  overflow: hidden;
}

/* Animated pastel background */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('pastel.png') center center / cover no-repeat;
  animation: fadeFocus 12s ease-in-out infinite alternate;
  z-index: -1;
  will-change: filter, transform;
}

@keyframes fadeFocus {
  0% {
    filter: blur(2px) brightness(0.8);
    transform: scale(1.02);
  }
  50% {
    filter: blur(1px) brightness(1);
    transform: scale(1.00);
  }
  100% {
    filter: blur(2px) brightness(0.8);
    transform: scale(1.02);
  }
}


/* Layout container */
main {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Centered mondoM logo */
.anchor-logo {
  max-width: 500px;
  width: 80%;
  filter: drop-shadow(0 0 12px #000);
  transition: transform 0.3s ease;
}

.anchor-logo:hover {
  transform: scale(1.02);
}

/* Small stained.png link image */
.stained-link {
  margin-top: 2rem;
  z-index: 3;
}

.stained-thumb {
  width: 120px;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 0 4px #000);
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.stained-thumb:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px #ffd700);
}
