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

html, body {
    height: 100%;
    background: #000;
    color: #00ff41;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.terminal {
    width: 100%;
    max-width: 900px;
    border: 2px solid #00ff41;
    padding: 2.5rem;
    background: rgba(0, 20, 0, 0.6);
    box-shadow:
        0 0 20px #00ff41,
        inset 0 0 40px rgba(0, 255, 65, 0.1);
    border-radius: 4px;
}

.prompt {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.glitch {
    font-size: clamp(2rem, 8vw, 5.5rem);
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    color: #00ff41;
    text-shadow:
        0 0 10px #00ff41,
        0 0 20px #00ff41,
        0 0 40px #00ff41;
    animation: flicker 2s infinite alternate;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: #ff0033;
    animation: glitch-1 2.5s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
    color: #00ffff;
    animation: glitch-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 2px); }
    40% { transform: translate(-3px, -2px); }
    60% { transform: translate(3px, 2px); }
    80% { transform: translate(3px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0% { transform: translate(0); }
    20% { transform: translate(3px, -2px); }
    40% { transform: translate(3px, 2px); }
    60% { transform: translate(-3px, -2px); }
    80% { transform: translate(-3px, 2px); }
    100% { transform: translate(0); }
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }
    20%, 22%, 24%, 55% {
        opacity: 0.7;
    }
}

.subtitle {
    margin-top: 1.5rem;
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    letter-spacing: 0.15em;
    opacity: 0.85;
}

.details {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(0, 255, 65, 0.4);
    font-size: clamp(0.875rem, 1.5vw, 1.05rem);
    line-height: 1.9;
}

.label {
    display: inline-block;
    width: 120px;
    opacity: 0.7;
}

.value {
    color: #ff0033;
    text-shadow: 0 0 6px #ff0033;
    font-weight: bold;
}

.blink {
    animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
    to { visibility: hidden; }
}

.cursor {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.5rem;
    animation: blink 0.8s steps(2, start) infinite;
}

.scanlines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0,
        rgba(0, 0, 0, 0) 2px,
        rgba(0, 255, 65, 0.06) 3px,
        rgba(0, 0, 0, 0) 4px
    );
    z-index: 2;
}

.scanlines::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}
