@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
body { padding: 0; margin: 0;font-family: 'Inter', sans-serif; }
#unity-container { position: absolute }
#unity-container.unity-desktop {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* Adicionar bordas arredondadas e sombra suave */
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Garante que o conteúdo respeite as bordas arredondadas */
    background-color: white; /* Cor de fundo para o contêiner */
}
#unity-container.unity-mobile { width: 100%; height: 100% }
#unity-canvas { background: #808080 }
.unity-mobile #unity-canvas { width: 100%; height: 100% }
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-logo { width: 300px; height: 118px; background: url('unity-logo-dark.png') no-repeat center }
#unity-progress-bar-empty {
    width: 200px; /* Aumentar um pouco a largura */
    height: 10px; /* Tornar mais fina e moderna */
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    /* Usar cor sólida em vez de imagem */
    background-color: #e0e0e0;
    border-radius: 5px;
}

#unity-progress-bar-full {
    width: 0%;
    height: 100%;
    /* Usar a cor azul da marca vista na imagem */
    background-color: #003366;
    border-radius: 5px;
    transition: width 0.2s ease; /* Animação suave de carregamento */
}
.unity-mobile #unity-footer { display: none }
#unity-footer {
    position: relative;
    /* Ajustar preenchimento e fundo */
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

#unity-build-title {
    /* Estilos existentes... */
    display: block;
    text-align: center;
    margin: 0 auto;
    font-family: 'Inter', sans-serif; /* Usando a fonte importada */
    /* Reduzir tamanho e cor para maior sutileza */
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: normal;
}
#unity-fullscreen-button { float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }
#unity-mobile-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }

canvas, .game-landscape {
	height: 218px;
	width: 388px;
}

canvas, .game-portrait {
	height: 388px;
	width: 218px;
}


@media only screen and (min-width: 1024px) {
	canvas, .game-landscape {
		height: 307px;
		width: 546px;
	}
	
	canvas, .game-portrait {
		height: 546px;
		width: 307px;
	}
}

@media only screen and (min-width: 1440px) {
	canvas, .game-landscape {
		height: 432px;
		width: 768px;
	}
	
	canvas, .game-portrait {
		height: 768px;
		width: 432px;
	}
}
