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

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

body {
    background: #000;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    line-height: 1.4;
    overflow: hidden;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow:0px 0px 200px 1000px #160c2f70 inset;
    -moz-box-shadow: 0px 0px 200px 1000px #160c2f70 inset;
    box-shadow: 0px 0px 200px 1000px #160c2f70 inset;


}

.terminal {
    padding: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 3px #fff;
}

.line {
    margin: 4px 0;
    white-space: pre-wrap;
    word-break: break-all;
}

.ascii-art {
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    margin:0 auto;
}

.boot-text {
    color: #999;
}

.prompt {
    color: #fff;
}

.dimmed {
    color: #666;
}

a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}

a:hover {
    background: #fff;
    color: #000;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #fff;
}

a:hover {
    background: #fff;
    color: #000;
}



.ascii-art {
    position: relative;
    transition: all 0.3s ease;
    animation: glitch 3s infinite; /*, interference 6s infinite; */
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
        text-shadow: 0 0 3px #fff;
    }
    20% {
        transform: translate(-1px, 1px);
        text-shadow: 2px 0 #00fff9, -1px 0 #ff00de;
    }
    40% {
        transform: translate(-1px, -1px);
        text-shadow: -2px 0 #00fff9, 1px 0 #ff00de;
    }
    60% {
        transform: translate(1px, 1px);
        text-shadow: 2px 0 #ff00de, -1px 0 #00fff9;
    }
    80% {
        transform: translate(1px, -1px);
        text-shadow: -2px 0 #ff00de, 1px 0 #00fff9;
    }
}

/* Interference Effect */

@keyframes interference {
    0% {
        transform: skewX(0)
    }

    0.5% {
        transform: skewX(-89deg)
    }

    0.75% {
        transform: skewX(2deg)
    }

    1% {
        transform: skewX(0deg)
    }

}

/* Cursor */

#corner-cursor {
position: fixed;
top: 10px;
left: 10px;
width: 10px;
height: 18px;
background: #fff;
animation: corner-blink 1.2s steps(1, end) infinite;
z-index: 9999;
pointer-events: none;
-webkit-box-shadow:0px 0px 4px 1px rgba(255,255,255,0.9);
-moz-box-shadow: 0px 0px 4px 1px rgba(255,255,255,0.9);
box-shadow: 0px 0px 4px 1px rgba(255,255,255,0.9);
}

@keyframes corner-blink {
0%, 49% { opacity: 1; }
50%, 100% { opacity: 0.1; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
#corner-cursor { animation: none; }
}

@media (max-width: 1200px) {
  .ascii-art {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .ascii-art {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .ascii-art {
    font-size: 8px;
  }
}

@media (max-width: 480px) {
  .ascii-art {
    font-size: 5px; /* smallest on phones */
  }
}