body {
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}
.container {
    text-align: center;
    max-width: 500px;
    padding: 40px;
}
h1 { font-size: 36px; margin-bottom: 20px; }
p { margin-bottom: 30px; line-height: 1.6; }

button {
    background: linear-gradient(to right, #7eaafd, #6392eb);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 12px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}
button:hover {
    transform: scale(1.03);
    background-position: 100% 50%;
}

#fingerprint{
    visibility: hidden;
    font-size: 10px;
}

.animation-layer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;  /* Change from 200vw */
    height: 100vh;
    z-index: -1;
    filter: drop-shadow(0 0 300px rgba(107, 132, 255, 0.4)) blur(80px) ;
    background: linear-gradient(125deg, rgb(60, 58, 88) 20%, rgb(62, 49, 92) 38%, rgb(79, 148, 148) 60%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    -webkit-mask: radial-gradient(circle at 50% 50%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 20%, transparent 40%);  /* Reduced from 30%, 60% */
    mask: radial-gradient(circle at 50% 50%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 20%, transparent 40%);
    animation: glow2 15s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        
        opacity: 0;
        transform: translateY(-20px) scale(1.1);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        visibility: visible;
    }
}

@keyframes glow2 {
    0%, 100% {
        background-position: 100% 50%;
        -webkit-mask: radial-gradient(circle at 50% 50%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 30%, transparent 60%);
        mask: radial-gradient(circle at 50% 50%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 30%, transparent 60%);
        filter: blur(80px);
    }
    50% {
        background-position: 0% 80%;
        -webkit-mask: radial-gradient(circle at 50% 50%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 35%, transparent 65%);
        mask: radial-gradient(circle at 50% 50%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 35%, transparent 65%);
        motion-rotation: 5deg;
        filter: blur(120px);
    }

    70% {
        motion-rotation: -5deg;
    }
}
