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

:root {
    --elephant-size: 0.5;
}

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

body {
    background-color: #000000;
    color: #00ff00;
    font-family: 'VT323', 'Courier New', monospace;
    font-size: 20px;
    line-height: 1.4;
    padding: 20px;
    overflow-x: hidden;
    cursor: text;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.ascii-header {
    text-align: center;
    display: inline-block;
    margin: 20px auto;
    margin-top: -80px;
    line-height: 1.4;
}

#asciiText {
    font-family: 'Courier New', monospace;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    font-size: 32px;
    letter-spacing: 2px;
    white-space: pre; /* KEEP ASCII PIPES ALL ON ONE LINE */
}

.menu {
    border: 1px solid #00ff00;
    padding: 20px;
    background-color: #001100;
}

.menu-item {
    margin: 15px 0;
    padding: 10px;
    border-left: 3px solid #00ff00;
    padding-left: 15px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    -webkit-user-select: none;
}

.menu-item:hover {
    background-color: #003300;
    text-shadow: 0 0 5px #00ff00;
    transform: translateX(5px);
}

.menu-item:active {
    background-color: #005500;
}

.menu-item::before {
    content: "> ";
    color: #ffff00;
}

.footer {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
    color: #00aa00;
    border-top: 1px solid #00ff00;
    padding-top: 10px;
}

.blink {
    animation: blink 1s infinite;
}

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

.prompt {
    color: #ffff00;
}

a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: #00ff00;
}

.elephant-art {
    font-family: 'Courier New', Courier, 'Lucida Console', Monaco, 'Consolas', 'Monaco', 'Menlo', monospace;
    background-color: black;
    line-height: 1;
    text-align: center;
    margin: 0 auto 20px auto;
    padding: 10px;
    width: fit-content;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.elephant-art::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 20px solid black;
    z-index: 10;
    pointer-events: none;
}

.elephant-art pre {
    margin: 0 auto;
    display: block;
    color: #000000;
    background-color: #ffffff;
    font-family: 'Courier New', Courier, 'Lucida Console', Monaco, 'Consolas', 'Monaco', 'Menlo', monospace;
    white-space: pre;
    line-height: 1;
    font-size: calc(((100vw - 80px) / 100) * var(--elephant-size));
    width: 100ch;
    max-width: calc((100vw - 80px) * var(--elephant-size));
    overflow: hidden;
    text-align: left;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
    font-feature-settings: normal;
    font-kerning: none;
    font-variant-ligatures: none;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: auto;
    text-rendering: optimizeSpeed;
    text-shadow: 0 0 0 black;
    mix-blend-mode: normal;
    isolation: isolate;
    contain: layout style paint;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    will-change: transform;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .elephant-art pre {
        font-size: calc(((800px - 80px) / 100) * var(--elephant-size));
        width: 100ch;
        max-width: calc((800px - 80px) * var(--elephant-size));
    }
}

@media (max-width: 767px) {
    .elephant-art {
        display: none;
    }
}

/* Hide header and elephant on mobile */
@media (max-width: 768px) {
    .header {
        display: none;
    }
    .elephant-art {
        display: none;
    }
}

