html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
        image-rendering: -moz-crisp-edges;
    /* Firefox */
    image-rendering: -webkit-optimize-contrast;
    /* Chrome */
    image-rendering: crisp-edges;
    /* Safari */
    image-rendering: pixelated;
    background-color: #101010; 
    
    	background: hsla(0,0%,98%,1.00);
	
	background-image:url(../../img/checker1.png) ;
    
        	font-family: 'Nunito', sans-serif;
}

#unity-container {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    image-rendering: -moz-crisp-edges;
    /* Firefox */
    image-rendering: -webkit-optimize-contrast;
    /* Chrome */
    image-rendering: crisp-edges;
    /* Safari */
    image-rendering: pixelated;

}

#unity-container.unity-desktop {
   left: 0%;
    top: 0%;
    margin: 0;
    padding: 0;
    position:absolute;
}

#unity-container.unity-mobile {
    position: fixed;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

#unity-canvas {
    position: absolute;
    
    margin-top: 20px;
    
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    
    border: 2px solid rgba(0, 0, 0, 1); /* Match your H2 cyan */
    border-radius: 4px;
    
    /* Ensure it has a size, or it might stay 0x0 */
    /* Unity usually sets this via JS, but you can force it here */
    display: block;
    
    background-color: black;
    
    	   -webkit-box-shadow: 0px 0px 18px 2px rgba(0,0,0,1);
        -moz-box-shadow: 0px 0px 18px 2px rgba(0,0,0,1);
        box-shadow: 0px 0px 18px 2px rgba(0,0,0,1);
}

.unity-mobile #unity-canvas {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none
}

#unity-logo {
    width: 154px;
    height: 130px;
    background: url('unity-logo-dark.png') no-repeat center
}

#unity-progress-bar-empty {
    width: 141px;
    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-webgl-logo {
    float: left;
    width: 204px;
    height: 38px;
    background: url('webgl-logo.png') no-repeat center
}

#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: 38px;
    height: 38px;
    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
}

h2 {
    text-align: center;
    display: block;
    width: 100%;
    margin: 20px auto;
    
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;   
    
    color: #00f2ff; 
    
/*
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.7), 
                 0 0 20px rgba(0, 242, 255, 0.4);
    
*/
    
    background: linear-gradient(to bottom, #ffffff 0%, #dbd264 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 a {
    color: inherit;          /* Takes the color from your h2 rule */
    text-decoration: none;   /* Removes the default underline */
    background: inherit;     /* Inherits the gradient background */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* Or 'block' if you want the whole line clickable */
    position: relative;
    z-index: 1000;
}

p {
    /* Centering */
    text-align: center;
    max-width: 600px;  /* Keeps text from stretching too wide on big screens */
    margin: 10px auto;

    /* Font & Style */
    font-size: 1.1rem;
    font-weight: 400;     /* Thinner weight looks more "modern" */
    line-height: 1.6;     /* Increases space between lines for readability */
    letter-spacing: 1px;  /* Subtle spacing to match the H2 */

    color: rgba(255, 255, 255, 0.85);
/*    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
    
/*
    border-left: 2px solid rgba(0, 242, 255, 0.3);
    border-right: 2px solid rgba(0, 242, 255, 0.3);
*/
    padding: 0 20px;
}
