@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap'); 
 
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
} 
 
body { 
    font-family: 'VT323', monospace; 
    background: #0a0a0a; 
    color: #00ff00; 
    line-height: 1.6; 
    font-size: 20px; 
    overflow-x: hidden; 
} 
 
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 40px 20px; 
} 
 
.ascii-art { 
    color: #ff00ff; 
    text-align: center; 
    font-size: 16px; 
    line-height: 1.2; 
    margin-bottom: 20px; 
    text-shadow: 0 0 10px #ff00ff; 
    animation: glitch 3s infinite; 
} 
 
@keyframes glitch { 
    0%%, 100%% { transform: translate(0); } 
    20%% { transform: translate(-2px, 2px); } 
    40%% { transform: translate(-2px, -2px); } 
    60%% { transform: translate(2px, 2px); } 
    80%% { transform: translate(2px, -2px); } 
} 
 
.tagline { 
    text-align: center; 
    font-size: 28px; 
    color: #00ffff; 
    margin-bottom: 40px; 
    text-shadow: 0 0 10px #00ffff; 
} 
 
.terminal { 
    background: #1a1a1a; 
    border: 2px solid #00ff00; 
    border-radius: 5px; 
    margin: 40px 0; 
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3); 
} 
 
.terminal-header { 
    background: #00ff00; 
    color: #0a0a0a; 
    padding: 10px 20px; 
    font-weight: bold; 
} 
 
.terminal-body { 
    padding: 20px; 
} 
 
.terminal-body p { 
    margin: 5px 0; 
} 
 
.output { 
    color: #888; 
    padding-left: 20px; 
} 
 
.output.success { 
    color: #00ff00; 
} 
 
.output.warning { 
    color: #ffff00; 
} 
 
.features { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    margin: 60px 0; 
} 
 
.feature { 
    text-align: center; 
    padding: 20px; 
    border: 1px solid #333; 
    background: #111; 
    transition: all 0.3s; 
} 
 
.feature:hover { 
    border-color: #00ff00; 
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3); 
    transform: translateY(-5px); 
} 
 
.feature pre { 
    color: #00ffff; 
    font-size: 18px; 
} 
 
.feature p { 
    color: #888; 
    margin-top: 10px; 
} 
 
.warning-box { 
    background: #1a0000; 
    border: 2px solid #ff0000; 
    padding: 20px; 
    margin: 40px 0; 
    text-align: center; 
} 
 
.warning-box pre { 
    color: #ff0000; 
    font-size: 18px; 
    text-shadow: 0 0 10px #ff0000; 
} 
 
.cta { 
    text-align: center; 
    margin: 60px 0; 
} 
 
.btn { 
    display: inline-block; 
    padding: 15px 40px; 
    margin: 10px; 
    background: #00ff00; 
    color: #0a0a0a; 
    text-decoration: none; 
    font-size: 24px; 
    font-weight: bold; 
    border: 2px solid #00ff00; 
    transition: all 0.3s; 
    text-shadow: none; 
} 
 
.btn:hover { 
    background: transparent; 
    color: #00ff00; 
    box-shadow: 0 0 20px #00ff00; 
} 
 
.btn.secondary { 
    background: transparent; 
    color: #00ffff; 
    border-color: #00ffff; 
} 
 
.btn.secondary:hover { 
    background: #00ffff; 
    color: #0a0a0a; 
    box-shadow: 0 0 20px #00ffff; 
} 
 
footer { 
    text-align: center; 
    padding: 40px 0; 
    color: #555; 
    border-top: 1px solid #333; 
    margin-top: 60px; 
} 
