body {
    padding: 0;
    margin: 0;
    font-family: 'Anton', sans-serif;
    background-color: #1a1a1a;
    /* Dark grey as per request */
    color: #e5e5e5;
}

#unity-container {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#unity-container.unity-desktop {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#unity-container.unity-mobile {
    width: 100%;
    height: 100%;
}

#unity-canvas {
    background: rgba(0, 0, 0, 0.7);
}

.unity-mobile #unity-canvas {
    width: 100%;
    height: 100%;
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

#parc-logo-light {
    position: absolute; /* To position the logo above the progress bar */
    bottom: 28px; /* Combined height of the progress bar (18px) and its top margin (10px) */
    left: 50%;
    transform: translateX(-50%); /* Center the logo */
    width: 200px;
    height: 74px;
    background: url('parc-logo-light.png') no-repeat center;
    background-size: contain;
}

#unity-progress-bar-empty {
    position: absolute; /* To position it at the bottom of the container */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* Center the progress bar */
    width: 141px;
    height: 18px;
    background: url('progress-bar-empty-dark.png') no-repeat center;
}

#unity-progress-bar-full {
    width: 0%;
    height: 18px;
    background: url('progress-bar-full-dark.png') no-repeat center;
}


#unity-footer {
    position: relative;
    font-family: 'Anton', sans-serif;
    /* Adopted the Anton font */
    color: #f0f0f0;
}

.unity-mobile #unity-footer {
    display: none;
}

#unity-webgl-logo {
    float: left;
    width: 204px;
    height: 38px;
    background: url('webgl-logo.png') no-repeat center;
}

#unity-build-title {
    float: left;
    margin-left: 10px;
    line-height: 38px;
    font-size: 18px;
}

#unity-fullscreen-button {
    float: right;
    width: 38px;
    height: 38px;
    margin-right: 10px;
    background: url('fullscreen-button.png') no-repeat center;
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: rgba(0, 0, 0, 0.8);
    /* Dark semi-transparent background */
    color: #f0f0f0;
    /* White color for text */
    padding: 10px;
    display: none;
    border-radius: 5px;
    /* Added rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Adopted shadow from your styles */
}