@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
.content {
	/* make vertical flex and center horizontal and vertically */
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 2.5vh;
	height: 100%;
}


.logo {
	margin-top: -10vh;
	width: 100%;
	height: 20vh;
	background-image: url("logo.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.container {
	border-radius: 1vh;
	background-color: white;
	box-shadow: 0px 0px 3vh 0px rgba(0, 0, 0, 0.4);
	padding: 0px 5vh;
	text-align: center;
	line-height: 1;
	max-width: 100%;
	min-width: auto;

	margin: 0 1vh;
}

h1 {
	font-weight: bold;
	font-size: 3.5vh;
}

.container > p {
	font-weight: 500;
	padding-bottom: 0.5vh;
	font-size: 1.8vh;
	color: rgb(66, 66, 66);
}

.split {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: black;
	margin: 20px auto;
}


.success {
	color: rgb(0, 0, 0);
}

.error {
	color: red;
}

.socials-panel {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;

	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
	padding: 0.5vh;
	border-radius: 1vh;

	gap: 0.5vh;
}

.socials-panel a {
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 3vh;
	padding: 1vh;
	/* padding: 1vh 2vh; */
	/* border-radius: 1vh; */
	/* background-color: #7289da; */
	/* box-shadow: 0px 0px 3vh 0px rgba(0, 0, 0, 0.4); */
	/* transition: 0.2s; */
	/* transition only for color */
	transition: color 0.2s;
}

.socials-panel a>ion-icon {
	/* center vertically */
	display: flex;
	justify-content: center;
	align-items: center;
}

.socials-panel .twitter:hover {
	color: #6ac6ff;
}

.socials-panel .discord:hover {
	color: #6a8aff;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #966f34a6 0%, #6b3f1ab6 100%), url("bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0px 0px 25vh 0px rgba(0, 0, 0, 0.5);
    height: 100vh;
    overflow: hidden;
    font-family: "Lilita One", serif;
}
img {
    user-drag: none; /* Standard syntax */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    -webkit-user-drag: none; /* WebKit/Blink */
    -webkit-user-select: none; /* WebKit/Blink */
    user-select: none; /* Non-prefixed version, currently supported by most browsers */
}

body {
    padding: 0;
    margin: 0;
}

canvas {
    width: 100%;
    height: 100%;
}

canvas:focus {
    outline: none;
}

#unity-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


#bottom-advert {
    position: absolute;
    width: 728px;
    height: 90px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

#side-advert-left, #side-advert-right {
    position: absolute;
    width: 300px;
    height: 250px;
    top: 50%;
    transform: translateY(-50%);
}

#side-advert-left {
    left: 0;
}

#side-advert-right {
    right: 0;
}

#unity-container.unity-mobile {
    position: fixed;
    width: 100%;
    height: 100%
}

.unity-mobile #unity-canvas {
    width: 100%;
    height: 100%
}

#unity-loading-bar {
    flex-direction: column;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#progress-text {
    color: white;
    font-size: 18px;
}

#unity-logo {
    width: 100%;
    height: 190px;
    background: url('logo.png') no-repeat center;
    background-size: contain;
}

#unity-progress-bar-empty {
    width: 350px;
    height: 36px;
    margin-top: 40px;
    margin-left: 6.5px;
	--color: rgba(0, 0, 0, 0.4);
    background-color: var(--color);
	box-shadow: var(--color) 0 0 0 4px;
    border-radius: 999px;
}


#unity-progress-bar-full {
	position: relative;
    width: 40%;
    height: 100%;
    border-radius: 999px;
    background-color: #ff8e16;
	box-shadow: inset 0 6px 8px #ffcb31; /* Top inner shadow */
}

.loader {
	z-index: 99999;
	position: absolute;
	right: -35px;
	transform: scale(0.8);
	top: -63px;
}

#unity-footer {
    position: relative
}

.unity-mobile #unity-footer {
    display: none
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
	border-radius: 20px;
	text-align: center;
    display: none;
}

.warning {
	color: rgb(75, 57, 7);
	background-color: rgb(255, 201, 51) !important;
	box-shadow: inset 0 -4px 5px 0px rgb(180, 137, 19), inset 0 4px 5px 0px rgb(255, 218, 117), 1px 1px 8px 2px rgb(160, 121, 13);
}

.error {
	color: rgb(73, 3, 3);
	background-color: rgb(255, 34, 34) !important;
	box-shadow: inset 0 -4px 5px 0px rgb(223, 17, 17), inset 0 4px 5px 0px rgb(255, 87, 87), 1px 1px 8px 2px rgb(161, 10, 10);
}


#info-panel {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 4vh;
	text-align: center;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
	padding: 0.2vh 2vh;
	border-radius: 1.5vh;
	color: white;
	font-size: 1.7vh;
	font-weight: 500;
	width: 50vh;

	box-shadow:
		0 0 0 2px #00000070;
	/* 
	box-shadow:
		0 0 0 2px #ffa61e, 0 0 20px 8px #ffa61e70; */

	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;

	gap: 0.5vh;
}

#info-panel>ion-icon {
	font-size: 8vh;
}

