@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

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

body {
    background-color: #0a0a00;
    color: #00ff41;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    font-size: 16px;
    line-height: 1.8;
    min-height: 100vh;
    padding: 40px;
    position: relative;
    overflow-x: hidden;
}

/* CRT scanline overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 2px,
        rgba(0, 0, 0, 0.15) 4px
    );
    pointer-events: none;
    z-index: 999;
}

/* CRT vignette effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: 998;
}

h1 {
    font-size: 1.6em;
    color: #00ff41;
    text-shadow:
        0 0 5px #00ff41,
        0 0 15px #00ff41,
        0 0 30px #00aa2a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid #00ff41;
    padding-bottom: 12px;
    margin-bottom: 20px;
    animation: flicker 6s infinite;
}

p, body {
    text-shadow:
        0 0 4px #00ff41,
        0 0 10px #00aa2a;
}

/* Flickering text animation */
@keyframes flicker {
    0%   { opacity: 1; }
    92%  { opacity: 1; }
    93%  { opacity: 0.6; }
    94%  { opacity: 1; }
    96%  { opacity: 0.8; }
    97%  { opacity: 1; }
    100% { opacity: 1; }
}

/* Blinking cursor effect on last element */
body::before {
    animation: scanlines 0.1s linear infinite;
}

@keyframes scanlines {
    from { background-position: 0 0; }
    to   { background-position: 0 4px; }
}

.breadcrumb {
    font-size: 0.85em;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.breadcrumb a {
    color: #ffe600;
    text-decoration: none;
    text-shadow: 0 0 6px #ffe600, 0 0 12px #cc9900;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: #ffffff;
}
