body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0a0a0c;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    overflow: hidden;
}

.jido-container {
    position: relative;
}

.jido-text {
    position: relative;
    font-size: 10vw;
    font-weight: 900;
    letter-spacing: 1.5vw;
    margin: 0;
    color: transparent;
    -webkit-text-stroke: 2px #2a2a30;
    text-transform: uppercase;
}

.jido-text::before {
    content: attr(data-text);
    position: absolute;
    left: -1.5vw; 
    text-indent: 1.5vw; 
    width: 0%;
    height: 100%;
    color: #00e5ff;
    -webkit-text-stroke: 0px transparent;
    border-right: 5px solid #00e5ff;
    overflow: hidden;
    white-space: nowrap;
    animation: auto-scan 4s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.5));
}

@keyframes auto-scan {
    0%, 10% {
        width: 0%;
    }
    40%, 60% {
        width: calc(100% + 1.5vw);
    }
    90%, 100% {
        width: 0%;
    }
}

.background-grid {
    position: absolute;
    width: 200vw;
    height: 200vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: grid-shift 20s linear infinite;
}

@keyframes grid-shift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -50px); }
}