body{
    overflow: hidden;
    background-color: #9b2719;
    display: flex;
    position: fixed;
    margin: 0;
    padding: 0;
}
html{
    overflow: hidden;
    position: fixed;
    -webkit-tap-highlight-color: transparent !important;
}
@font-face {
    font-family: 'RedOctober';
    src: url('fonts/RedOctober.otf') format('opentype');
}

.clickable{
    cursor: pointer;

}
.clickable:hover{
    opacity: 0.8;
}
.clickable:active{
   transform: translateY(-5px);
   transition: transform 0.1s ease-in-out;
}
.rack{
    transition: fill 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.rack-broken{
    fill: #000 !important;
    opacity: 0.5;
    transition: fill 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.title{
    font-family: 'RedOctober';
    font-size: 4rem;
    color: #d7b14e;
    text-align: center;
    margin: 0;
}
.subtitle{
    font-family: monospace;
    font-size: 1.5rem;
    color: #d7b14e;
    text-align: center;
    letter-spacing: 0.1em;
    margin: 0;
}

.container{
    min-height: 100vh;
    min-width: 100vw;
    justify-content: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
    transition: opacity 5s ease-out;
}
.main-svg{
    margin-top: 10vh;
    max-height: 50vh;
    flex: 1;
}
.led-default{
    fill: #d7b14e;
}
.led-green{
    fill: #4ed74e;
    filter: drop-shadow(0 0 10px #00ff00);
    transition: fill 0.5s ease-in-out, filter 0.5s ease-in-out;
}
.led-orange{
    fill: #db894e;
}
.led-red{
    fill: #d74e4e !important;
    filter: drop-shadow(0 0 10px #ff0000) !important;
    transition: fill 0.05s ease-in-out, filter 0.05s ease-in-out;
}
.led-red-bootup{
    fill: #d7754e;
    filter: drop-shadow(0 0 10px #ff00009c);
}

.kgb-window{
    position: absolute;
    width: 300px;
    height: 200px;
    background-color: #9b2719;
    border: 2px solid #d7b14e;
    z-index: 1000;
    display: flex;
    justify-content: start;
    flex-direction: column;
    box-shadow: 5px 5px 0px #0000007c;
}
.kgb-window-title{
    font-family: monospace;
    font-weight: bold;
    font-size: 1rem;
    color: #d7b14e;
    border-bottom: 2px solid #d7b14e;
    text-align: center;
    padding: 5px;
}
.kgb-window-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
}
.kgb-window-text{
    font-family: monospace;
    font-size: 0.8rem;
    color: #d7b14e;
    text-align: center;
}
.progress-bar{
    width: 100%;
    height: 10px;
    background-color: #00000065;
}
.progress-bar-fill{
    width: 0%;
    height: 100%;
    background-color: #d7b14e;
}
.kgb-progress-bar-container{
    margin: 10px;
    width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}