body {
    margin: 0;
    overflow: hidden;
    background: black;
}

.matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 10;
}

.word {
    position: absolute;
    bottom: -100px;
    color: hsl(35, 100%, 50%);
    font-family: monospace;
    font-size: 1.5rem;
    opacity: 0;
    display: flex;
    flex-direction: column;
    animation: moveUp 5s linear infinite, fadeInOut 5s linear infinite;
    text-shadow: 0 0 8px rgba(255, 165, 0, 0.75), 0 0 20px rgba(255, 69, 0, 0.5);
}

@keyframes moveUp {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-150vh);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
}

.card {
    position: relative;
    z-index: 20;
}

.neon-text {
    font-family: "Monoton", cursive;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    -webkit-animation: neon1 1.5s ease-in-out infinite alternate;
    animation: neon1 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes neon1 {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #ff1177,
        0 0 70px #ff1177, 0 0 80px #ff1177, 0 0 100px #ff1177, 0 0 150px #ff1177;
    }
    to {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #ff1177,
        0 0 35px #ff1177, 0 0 40px #ff1177, 0 0 50px #ff1177, 0 0 75px #ff1177;
    }
}

@keyframes neon1 {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #ff1177,
        0 0 70px #ff1177, 0 0 80px #ff1177, 0 0 100px #ff1177, 0 0 150px #ff1177;
    }
    to {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #ff1177,
        0 0 35px #ff1177, 0 0 40px #ff1177, 0 0 50px #ff1177, 0 0 75px #ff1177;
    }
}
@keyframes dance {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(30deg); }
    40% { transform: rotate(60deg); }
    60% { transform: rotate(-15deg); }
    80% { transform: rotate(-30deg); }
    100% { transform: rotate(0deg); }
}

.dance {
    animation: dance 5s ease-in-out;
}

