html,
body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #222;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
}

#renderCanvas {
    width: 100%;
    height: 100%;
    touch-action: none;
}

#loadingScreen {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: white;
    background-color: #222;
    z-index: 9999;
    position: absolute; /* Ensure it covers the entire screen */
    padding: 20px;
    box-sizing: border-box;
}

.companyLogo img {
    width: 150px; /* Adjusted size */
    height: auto;
    margin-bottom: 20px;
}

.loadingLogo img {
    width: 512px; /* Adjusted size */
    height: auto;
    margin-bottom: 20px;
    border-radius: 25px;
}

#loadingTextTitle {
    font-size: 36px;
    color: #ff5722;
    font-weight: bold;
    margin-top: 10px;
}

#loadingTextDescription {
    font-size: 28px;
    margin: 10px 0;
    color: #ddd;
}

#loadingTextVersion {
    font-size: 20px;
    margin-top: 20px;
    color: #888;
}

.acknowledgments {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}

.tech-logo {
    width: auto;
    height: 148px;
    max-width: 148px;
    object-fit: contain;
}

.vertical-center {
    margin: 0 auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}