/* Fluid Background Animation */
@keyframes fluid {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0,0,0,0.9), rgba(50,50,50,0.3), rgba(0,0,0,0.9));
    background-size: 200% 200%;
    z-index: -1;
    animation: fluid 10s ease infinite;
}

a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
    background: black;
    color: white;
    text-align: center;
}
.splashImage {
  width: 70%;
  max-width: 800px;
  margin-bottom: 50px;
  border-radius: 15px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-out, transform 1s ease-out; /* separate transitions */
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.splashImage.visible {
  opacity: 1;
  transform: translateY(0);
}
