* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    overflow: hidden;
    background: #000;
    color: #fff;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.left-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #0a0a0a;
}

.stealth-text {
    font-size: 8rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    text-transform: lowercase;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 255, 0, 0.8), 0 0 40px rgba(0, 255, 0, 0.6);
    }
}

.right-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #111;
    position: relative;
    overflow: hidden;
    border-left: 2px solid #00ff00;
    box-shadow: inset 0 0 50px rgba(0, 255, 0, 0.1);
}


.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.matrix-column {
    position: absolute;
    top: -100%;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: #00ff00;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.8);
    opacity: 0.3;
    animation: matrix-fall linear infinite;
}

@keyframes matrix-fall {
    to {
        transform: translateY(200vh);
    }
}


.mirror-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mirror-text {
    font-size: 8rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    text-transform: lowercase;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
    position: relative;
    z-index: 5;
}

.mirror-reflection {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 0, 0.5) 20%, 
        rgba(0, 255, 0, 0.8) 50%, 
        rgba(0, 255, 0, 0.5) 80%, 
        transparent 100%);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
    animation: reflection-scan 3s linear infinite;
}


@keyframes reflection-scan {
    0% {
        transform: translateY(-200px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(200px);
        opacity: 0;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .stealth-text,
    .mirror-text {
        font-size: 4rem;
    }
    
    .matrix-column {
        font-size: 0.8rem;
    }
}
