body {
    background-color: #000;
    color: #90f;
    font-family: Consolas, 'Andale Mono', 'Lucida Console', 'Courier New', monospace;
    margin: 0;
    height: 100vh;
    overflow: hidden;
    cursor: url('cursor.png'), auto;
    font-size: 20px; /* Increased base font size */
}

#terminal {
    padding: 20px;
    white-space: pre-wrap;
    height: 100vh;
    width: 100%;
    overflow-y: auto;
    position: relative;
    box-sizing: border-box;
}

#output {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    padding-bottom: 20px;
}

#main-text {
    position: relative;
    z-index: 1;
    color: #90f;
    font-size: 1.4em; /* Increased size for main text */
}

#hex-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

#cursor {
    width: 12px;
    height: 24px;
    background-color: #90f;
    animation: blink 1s step-end infinite;
    display: inline-block;
    vertical-align: bottom;
}

.falling-hex {
    position: fixed;
    color: #90f;
    font-family: monospace;
    font-size: 18px; /* Adjusted size for falling hex */
    opacity: 0.7;
    text-shadow: 0 0 5px #90f;
    animation: flicker 0.5s infinite alternate;
}

.ascii-art-regular {
    font-size: 9px; /* Adjusted value for regular ASCII art */
}

.ascii-art-logo {
    font-size: 9px; /* Adjusted value for the logo ASCII art */
}

#glitch-image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #000;
    z-index: 10;
}

#glitch-image {
    max-width: 100%;
    max-height: 100%;
}

@keyframes blink {
    from, to {
        background-color: transparent;
    }
    50% {
        background-color: #90f;
    }
}

@keyframes flicker {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

/* Scrollbar styles */
#terminal::-webkit-scrollbar {
    width: 10px;
}

#terminal::-webkit-scrollbar-track {
    background: #90f;
}

#terminal::-webkit-scrollbar-thumb {
    background: #90f;
}

#terminal::-webkit-scrollbar-thumb:hover {
    background: #90f;
}
