/* --- Custom Stylesheet for Glitch & Datastream Portfolio --- */

body {
    font-family: 'Space Mono', monospace;
    background-color: #0A0A0A;
    color: #00FF00;
    overflow: hidden;
}

/* The main container to hold all content */
.terminal-container {
    max-width: 900px;
    height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
}

/* The main glitched text effect — single color, no shadow, no animation */
.glitch {
    position: relative;
    color: rgba(11,122,11,0.85); /* dimmer, less bright green */
    animation: none !important;
}

.glitch:before, .glitch:after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: rgba(11,122,11,0.85); /* same dim color for pseudo layers */
    background: transparent;
    pointer-events: none;
    transform: none;
    opacity: 1;
}

/* remove or disable the previous glitch keyframe usage (keeps file safe if keyframes remain) */
@keyframes glitch {
    /* empty */
}

/* The datastream effect for background (unchanged) */
.datastream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.datastream span {
    position: absolute;
    bottom: -50px;
    color: rgba(0, 255, 0, 0.1);
    font-size: 20px;
    animation: datastream-flow 10s linear infinite;
}
@keyframes datastream-flow {
    to { transform: translateY(-100vh); }
}

/* Style for the visible content sections - remove box-shadow */
.content-section {
    border: 2px solid #00ff00;
    /* box-shadow removed */
    padding: 2rem;
    margin-top: 2rem;
    animation: decode-in 1s forwards;
    opacity: 0;
    transform: translateY(20px);
}
.content-section.active {
    opacity: 1;
    transform: translateY(0);
}
.decoded-text {
    animation: decode-text 1.5s forwards;
    opacity: 0;
    filter: blur(5px);
}
@keyframes decode-text {
    to { opacity: 1; filter: blur(0); }
}

/* remove text-shadow from glows */
.text-glow {
    /* no text-shadow */
}

/* bio refiner inputs - remove box-shadow */
.bio-refiner-container {
    border-top: 1px solid #00ff00;
    padding-top: 1rem;
    margin-top: 1rem;
}
.bio-input, .bio-output {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff00;
    color: #00ff00;
    /* box-shadow removed */
}

/* loading pulse (keeps opacity pulse) */
.loading-text {
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* FORCE: make intro text completely static and a single, reduced‑light color, no shadow */
#intro-prompt,
#intro-prompt::before,
#intro-prompt::after {
    animation: none !important;
    transition: none !important;
    color: rgba(11,122,11,0.85) !important; /* reduced brightness */
    transform: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}

/* Ensure pseudo-elements show the same text, no clipping/offset */
#intro-prompt::before,
#intro-prompt::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: inherit !important;
    /* no text-shadow */
    clip-path: none !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none;
}

/* If you used .glitch class elsewhere, keep it non-animating too */
.glitch {
    animation: none !important;
    transition: none !important;
}
