/* General Styles */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #141414;
    font-family: 'Courier New', Courier, monospace;
    color: white;
    overflow: hidden;
    margin: 0;
    position: relative;
    flex-direction: column;
}

/* Top Container Styles */
.top-container {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    text-align: left;
    font-size: 1.2em;
    color: white;
    padding-left: 20px;
}

/* Text Resolver Styles */
.resolver {
    font-size: 1.5em;
    text-align: center;
    z-index: 1;
    margin-top: 50px;
}

/* Blinking Cursor */
.cursor {
    font-weight: bold;
    color: lime;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Background Particle Effect */
.particle-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.3), transparent);
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: blue;
    border-radius: 50%;
    opacity: 0.8;
    animation: move 5s linear infinite;
}

@keyframes move {
    0% {
        transform: translate(0, 0);
        opacity: 0.8;
    }
    100% {
        transform: translate(500px, -800px);
        opacity: 0;
    }
}
