body {
    padding: 0;
    margin: 0;
    background: #000b13;
    background-image: linear-gradient(to right, #060a0f, #160b1a, #020509, #0a1127);
}

#unity-container {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 90%;
    height: 90%;
    display: none;
}

#unity-container.unity-desktop {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: solid #403f44 5px;
    padding: 5px;
}

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

#unity-canvas {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    font-family: Quicksand, sans-serif;
}

#unity-loading-bar h2 {
    font-size: 28px; /* Increase size */
    margin-bottom: 30px; /* Add spacing */
    color: #bf6308;
    font-family: Quicksand, sans-serif;
}

#unity-loading-bar p {
    font-size: 18px; /* Adjust body text */
    margin-bottom: 10px; /* Adjust spacing between texts */
    color: #ffffff;
    font-family: Quicksand, sans-serif;
}

#progress-bar-wrapper {
    width: 250px; /* Increase width */
    background-color: #444;
    border-radius: 10px; /* Add rounding */
    margin: 20px auto;
    height: 25px; /* Increase height */
    overflow: hidden;
}

#progress-bar {
    width: 0;
    height: 100%;
    background-color: #ffffff; /* Matching progress bar color */
    border-radius: 10px; /* Add rounding to progress */
}

#unity-footer {
    position: relative;
    padding-top: 10px;
    background-color: #02050900;
}

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

#unity-build-title {
    color: white;
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-family: Quicksand, sans-serif;
    font-size: 18px;
}

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

#unity-mobile-warning {
    position: absolute;
    left: 5%;
    top: 5%;
    background: white;
    padding: 10px;
    display: none;
    font-family: Quicksand, sans-serif;
}
