body {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
        url("../../images/pxfuel.jpg");
        background-color: var(--main-dark);
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        
}


.fakebotbar{
    background-color: var(--main-dark);
    width: 100%;
    height: 30px;
    position: fixed;
    bottom: 0%;
    border-top: 2px solid var(--purple);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--main-dark);
    z-index: 5;
    padding: 1px 0;
    border-bottom: 2px solid var(--purple);
}

.mainwindows center {
    margin: 0px 70px;
}



.mainwindows:focus,
.mainwindows *:focus {
    outline: none;
    box-shadow: none;
}

.mainwindows { 
    position: absolute;
    user-select: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 1000px;
    max-height: 80vh;

    padding: 0px 20px;
    border: ridge 6px var(--orange);
    background-color: var(--transparent-dark);
    scrollbar-color: var(--orange) var(--main-dark);
    overflow-y: auto;
}

.fullheightwindow {
    min-height: auto;
}

.mainwindow-wide{
    max-width: none;
    width: 80vw;
}

.mainwindows p{
    padding: 0px 20px;
}

.mainwindows::-webkit-scrollbar {
    width: 8px;
    background: var(--main-dark);
}

.mainwindows::-webkit-scrollbar-thumb {
    background: var(--orange);
    border: 1px solid var(--main-light);
}

.fullheightwindow{
    min-height: 45vh;
}

@media only screen and (orientation: portrait) {
    body {
        overflow: hidden;
        height: 100vh;
        position: fixed;
        width: 100%;
    }

    .mainwindows {
        
        -webkit-overflow-scrolling: touch;
        

        height: auto;
    }
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
}

body {
    touch-action: none;
}

.mainwindows {
    touch-action: auto;
}

.listtable {
    border-left: 2px solid var(--purple);
    border-right: 2px solid var(--purple);
    background: rgba(0, 0, 0, 0.3);
    
}

.listtable.transitioning{
    opacity: 0;
}

.listtable th {
    background: var(--purple);
    color: var(--main-dark);
    padding: 8px;
    text-transform: uppercase;
    
}

.listtable tr:nth-child(even) {
    background: rgba(123, 88, 157, 0.1);
}

.listtable td a {
    position: relative;
    padding-left: 30px;
    
}

.listtable td a:before {
    content: ">";
    position: absolute;
    left: 10px;
    color: var(--orange);
}

.directory-header {
    font-family: "dos";
    color: var(--orange);
    letter-spacing: 3px;
    border-bottom: 2px dashed var(--purple);
    padding-bottom: 10px;
    padding-left: 10px;
    margin: 20px 0;
}

.system-msg {
    font-family: "dos";
    color: var(--orange);
    padding: 10px;
    border: 1px solid var(--orange);
    margin: 15px 0;
}

.listtable tr td.directory-header:hover,
.listtable tr td[colspan="4"]:hover {
    background: transparent !important;
    cursor: default;
}

.listtable tr:not(:first-child):hover td:not([colspan]) {
    background: rgba(123, 88, 157, 0.3) !important;
}


.listtable tr:hover {
    background: transparent;
}


.listtable tr:nth-child(even) {
    background: rgba(123, 88, 157, 0.1);
}


.system-alert {
    max-width: 1200px;
    margin: 20px auto;
    padding: 15px 0;
    border-top: 2px dashed var(--purple);
    text-align: center;
}

.ascii-art {
    max-width: 80%;
    margin: 0 auto;
    font-size: 0.6em;
    line-height: 1.2;
    overflow: hidden;
}

.system-msg p{
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .system-alert {
        max-width: 90%;
    }
    .ascii-art {
        font-size: 0.4em;
    }
}
.dos-prompt span.purple {
    letter-spacing: 2px;
}

@keyframes pixelReveal {
    0% {
      clip-path: inset(100% 0 0 0);
    }
    100% {
      clip-path: inset(0 0 0 0);
    }
  }
  
.mainwindows {
animation: pixelReveal 0.5s steps(10) forwards;
}
  

