
.preload-landing-screen {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
    min-height: 100vh;
    background-color: black;
}

.preload-logo-container {
    margin-bottom: 19px;
    margin-top: 62px;
}

.preload-logo-image {
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    width: 323px;
    height: 616px;
}

.preload-enter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0px; 
}

.preload-enter-wrapper {
    position: relative;
    width: 173px;
    height: 112px;
}

.preload-enter-image {
    width: 100%;
    height: 100%;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

.preload-loading-text {
    font-size: 25px;
    color: blue;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-shadow: -2px 2px 0 #a8c100;
    cursor: default;
    transition: none; 
}

.preload-enter-text {
    font-size: 25px;
    color: blue;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-shadow: -2px 2px 0 #a8c100;
    cursor: pointer;
    transition: text-shadow 0.3s ease, transform 0.3s ease;
}

.preload-enter-text:hover {
    text-shadow: none;
    transform: translate(-50%, -50%) scale(0.98);
}

.preload-loading-bar-background {
    width: 300px;
    height: 30px;
    margin: 18px auto;
    border-radius: 0px;
    overflow: hidden;
    position: relative; 
}

.preload-loading-bar {
    height: 28px; 
    width: 0%;
    background-color: #ff0000;
    border: 1px solid #000000; 
    transition: width 0.4s ease;
    position: absolute; 
    top: 0;
    left: 0;
    z-index: 1; 
    box-sizing: border-box; 
}


.preload-loading-bar-overlay {
    background: url('images/loading/loading-bar-bg.png') no-repeat center;
    image-rendering: -webkit-optimize-contrast; 
  image-rendering: crisp-edges;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2; 
    pointer-events: none; 
}


.preload-footer {
    font-size: 12.5px;
    font-family: 'Almendra', 'Times New Roman', Times, serif;
    color: #666666;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 50;
    border-top: 3px double #666666;
    background: none;
    margin: 0;
    box-sizing: border-box;
    position: relative;
}

.preload-footer a {
    color: #666666;
    text-decoration: none;
    margin: 0 10px;
}

.preload-footer a:hover {
    text-decoration: underline;
}
