body {
    padding: 0;
    margin: 0;
    background: url('Background.jpg') center top no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    overflow: auto;
}

#unity-container {
    position: absolute;
    top: 20px;  /* Move canvas 20px from the top */
    left: 50%;
    transform: translateX(-50%);  /* Only horizontally center the container */
    min-height: 800px;
}

#unity-canvas {
    width: 1280px;
    height: 720px;
    margin: auto;
    position: relative;
}

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

#unity-logo {
    width: 200px;
    height: 200px;
    background: url('unity-logo-dark.jpg') no-repeat center;
}

#unity-progress-bar-empty {
    width: 200px;
    height: 18px;
    margin-top: 10px;
    margin-left: 6.5px;
    background: url('progress-bar-empty-dark.png') no-repeat center;
}

#unity-progress-bar-full {
    width: 0%;
    height: 18px;
    margin-top: 10px;
    background: url('progress-bar-full-dark.png') no-repeat center;
}

#unity-footer {
    position: relative;
}

.unity-mobile #unity-footer {
    display: none;
}

#unity-build-title {
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-family: arial;
    font-size: 18px;
}

#unity-fullscreen-button {
    cursor: pointer;
    float: right;
    width: 50px;
    height: 50px;
    background: url('fullscreen-button.png') no-repeat center;
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none;
}
