* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: black;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.animation-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px #00933c;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* Colorful Moving Lines */
.lines {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.line {
    position: absolute;
    width: 3px;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(255, 0, 255, 0) 0%, #00933c 50%, rgba(255, 0, 255, 0) 100%);
    opacity: 0.7;
    animation: moveLines 5s linear infinite;
}

@keyframes moveLines {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Positioning the Lines Randomly */
.line:nth-child(1) { left: 10%; animation-delay: 0s; }
.line:nth-child(2) { left: 30%; animation-delay: 1s; }
.line:nth-child(3) { left: 50%; animation-delay: 2s; }
.line:nth-child(4) { left: 70%; animation-delay: 3s; }
.line:nth-child(5) { left: 90%; animation-delay: 4s; }

/* Backlink Styling */
.footer-text {
    position: absolute;
    bottom: 20px;
    color: white;
    font-size: 1rem;
    text-align: center;
}

.backlink {
    color: #00933c;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.backlink:hover {
    color: #02d155;
}
