body {
    padding: 0;
    margin: 0;
    background: #1a1a1a;
    overflow: hidden;
}

#unity-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

#unity-container.unity-desktop {
    width: 100%;
    height: 100%;
}

#unity-container.unity-mobile {
    position: fixed;
    width: 100%;
    height: 100%;
}

#unity-canvas {
    background: #231F20;
    display: block;
}

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

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

#unity-logo {
    width: 300px;
    height: 300px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#unity-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#unity-progress-bar-empty {
    width: 300px;
    height: 24px;
    margin: 10px auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#unity-progress-bar-full {
    width: 0%;
    height: 24px;
    background: linear-gradient(90deg, #00a8e8 0%, #0066cc 100%);
    border-radius: 12px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 168, 232, 0.5);
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translateX(-50%);
    background: white;
    padding: 10px;
    display: none;
    z-index: 1000;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    #unity-logo {
        width: 200px;
        height: 200px;
    }
    
    #unity-progress-bar-empty {
        width: 200px;
    }
}
