/* Minimal style.css for VX Games */
body { padding: 0; margin: 0; overflow: hidden; }
#unity-container { position: absolute; width: 100%; height: 100%; }
#unity-canvas { width: 100%; height: 100%; background: #000; }

/* Simple loading bar */
#unity-loading-bar { 
    position: absolute; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%);
    width: 300px;
    text-align: center;
}

/* VX Games Logo */
#unity-logo { 
    margin-bottom: 20px;
    left: 50%; 
}

#unity-logo img {
    max-width: 500px; /* Adjust size as needed */
    height: auto;
    
}

/* Progress bar */
#unity-progress-bar-empty { 
    width: 100%; 
    height: 20px; 
    background: #333;
    border-radius: 10px;
    overflow: hidden;
}

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

/* Hide footer elements */
#unity-footer { display: none; }
#unity-warning { display: none; }
#unity-fullscreen-button { display: none; }