#fake-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4f6936;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

#fake-loading-title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

#fake-loading-logo {
    width: 256px;
    height: 256px;
    margin-bottom: 20px;
    background-image: url('angry-plants-512.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#fake-loading-bar {
    width: 80%;
    max-width: 300px;
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

#fake-loading-progress {
    height: 100%;
    width: 0%;
    background-color: #4CAF50;
    border-radius: 10px;
    transition: width 0.3s;
}

#fake-loading-text {
    margin-top: 10px;
    font-size: 16px;
    color: #fff;
}
