#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'SB Sans', sans-serif;
    padding: 20px;
    box-sizing: border-box;
}

#preloader-image-container {
    width: 75vw;
    height: 112.5vw;
    margin-bottom: 20px;
    position: relative;
}

.preloader-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#preloader-brush {
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #FF8C00, #FF0000);
    position: absolute;
    top: 105%;
    left: 10%;
    transition: width 1s linear;
}

#preloader-joke-window {
    background: rgba(40, 40, 40, 0.7);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    max-width: 80%;
    font-size:40px;
    text-align: center;
    font-style: italic;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#preloader-text {
    font-size: 24px;
    margin-bottom: 20px;
}

#preloader-progress-container {
    width: 80%;
    max-width: 600px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 10px;
    overflow: hidden;
}

#preloader-progress-bar {
    width: 0;
    height: 100%;
    background: #4CAF50;
    transition: width 0.3s ease-in-out;
}

.hidden {
    display: none !important;
}
