.elementor-347 .elementor-element.elementor-element-71b992d6{--display:flex;}.elementor-347 .elementor-element.elementor-element-fec7bf8{--display:flex;}/* Start custom CSS *//* 1. THE ANIMATED BACKGROUND GRID */
body {
    background-color: #000000;
    
    /* Creates the green grid lines */
    background-image: 
        linear-gradient(rgba(57, 255, 20, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.2) 1px, transparent 1px);
    
    background-size: 50px 50px;
    
    /* UPDATED: Speed is now 8s (was 20s) for faster movement */
    animation: gridScroll 8s linear infinite;
    
    min-height: 100vh;
    position: relative;
}

/* 2. THE SCREEN OVERLAY (Scanlines + Green Vignette + Rolling Bar) */
body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    z-index: 9998;
    
    /* UPDATED: Green Glow on the edges */
    box-shadow: inset 0 0 100px rgba(57, 255, 20, 0.3);
    
    background: 
        /* 1. The Rolling Scanline (The "Refresh" bar moving down) */
        linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.2)),
        /* 2. Tiny Static Terminal Lines */
        repeating-linear-gradient(0deg, transparent 0px, transparent 1px, rgba(57, 255, 20, 0.1) 2px, rgba(57, 255, 20, 0.1) 3px),
        /* 3. The Vignette (Darkening + Green Tint at corners) */
        radial-gradient(circle at center, transparent 60%, rgba(0, 50, 0, 0.4) 90%, rgba(0, 0, 0, 0.9) 120%);
        
    background-size: 100% 4px, 100% 4px, 100% 100%;
    
    /* UPDATED: Adds the rolling scanline animation */
    animation: scanline 6s linear infinite;
}

/* 3. THE HUD FRAME (Corners + Text) */
body::after {
    content: "";
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #39FF14;
    font-size: 14px;
    letter-spacing: 2px;
    
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 25px;
    
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    z-index: 9999;
    pointer-events: none;
    
    /* The Green Corner Brackets */
    background:
        linear-gradient(to right, #39FF14 4px, transparent 4px) 0 0,
        linear-gradient(to bottom, #39FF14 4px, transparent 4px) 0 0,
        linear-gradient(to left, #39FF14 4px, transparent 4px) 100% 0,
        linear-gradient(to bottom, #39FF14 4px, transparent 4px) 100% 0,
        linear-gradient(to right, #39FF14 4px, transparent 4px) 0 100%,
        linear-gradient(to top, #39FF14 4px, transparent 4px) 0 100%,
        linear-gradient(to left, #39FF14 4px, transparent 4px) 100% 100%,
        linear-gradient(to top, #39FF14 4px, transparent 4px) 100% 100%;

    background-repeat: no-repeat;
    background-size: 40px 40px;
    
    animation: textBlink 2s infinite;
}

/* --- ANIMATIONS --- */

/* Moves the background grid forward */
@keyframes gridScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 50px; }
}

/* Moves the faint scanlines down the screen */
@keyframes scanline {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 100%; }
}

/* Blinks the HUD text */
@keyframes textBlink {
    0%, 100% { text-shadow: 0 0 10px #39FF14; opacity: 1; }
    50% { text-shadow: none; opacity: 0.5; }
}/* End custom CSS */