body {
    padding: 0;
    margin: 0;
    background: #f5f5f5; /* Light background since you want black text */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

#unidm-container {
    position: absolute;
    top: 0%;
}

@media only screen and (max-width: 600px) {
    #unidm-container {
        position: fixed;
        left: 50%;
        transform: translate(-50%, -0%);
        top: -5%;
        width: 150%;
        height: 105%;
    }
}

@media only screen and (min-width: 601px) {
    #unidm-container {
        position: absolute;
        top: 0%;
    }
}

.unidm-mobile #unidm-canvas {
    width: 100%;
    height: 100%;
}

/* Animation loader */
.animationLoaderWrap {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

/* Loading text - position below the animation */
#loading-container {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

#loading-text {
    color: #333; /* Dark text for light background */
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Progress bar - position below loading text */
#unidm-loading-bar {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    display: block;
    text-align: center;
    z-index: 1000;
    width: 320px;
}

#unidm-progress-bar-empty {
    width: 300px;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#unidm-progress-bar-full {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 15px rgba(79, 172, 254, 0.5);
}

/* Hand pointer */
.handPointerNudge {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #666;
    font-size: 32px;
    animation: bounce 2s ease-in-out infinite;
    z-index: 100;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Exact logo */
#exact-logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#exact-logo:hover {
    opacity: 1;
}

#exact-logo img {
    max-width: 120px;
    height: auto;
}

/* Warning banner */
#unity-warning {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    max-width: 90%;
}
#unidm-fullscreen-button { cursor:pointer; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }